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