serializeAsMap method
Serialize the object to a map for use over the method channel
Implementation
Map<String, Object?> serializeAsMap() => {
'attributes':
attributes.map((attribute) => attribute.serializeAsMap()).toList(),
if (options != null) 'options': options?.serializeAsMap(),
};