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