internalGetBridgeRepresentation method

  1. @protected
Map internalGetBridgeRepresentation()

Internal method. Get the serializable representation of this object

Implementation

@protected
Map internalGetBridgeRepresentation() {
  return {
    "attributes": _attributes
        .map((key, value) => MapEntry(key, value.toBridgeRepresentation())),
    "tags": _tags.toList()
  };
}