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