toJson method
Implementation
Map<String, dynamic> toJson() {
final manifestName = this.manifestName;
final streamSelection = this.streamSelection;
return {
if (manifestName != null) 'manifestName': manifestName,
if (streamSelection != null) 'streamSelection': streamSelection,
};
}