toMap method
Implementation
Map<String, dynamic> toMap() => {
"sources": sources == null
? null
: List<dynamic>.from(sources!.map((x) => x.toMap())),
"image": image,
"title": title,
"adschedule": adschedule,
"tracks": tracks == null
? null
: List<dynamic>.from(tracks!.map((x) => x.toMap())),
"file": file,
"description": description,
};