internalGetBridgeRepresentation method
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()
};
}