toJson method

Map<String, dynamic> toJson()

Implementation

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