toJson method

Map<String, dynamic> toJson()

Implementation

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