toMap method
Converts this audio source to a map for platform channel
Implementation
@override
Map<String, dynamic> toMap() {
return {
'type': 'concatenating',
'children': children.map((c) => c.toMap()).toList(),
'useLazyPreparation': useLazyPreparation,
};
}