VideoBlackFailoverSettings.fromJson constructor
Implementation
factory VideoBlackFailoverSettings.fromJson(Map<String, dynamic> json) {
return VideoBlackFailoverSettings(
blackDetectThreshold: json['blackDetectThreshold'] as double?,
videoBlackThresholdMsec: json['videoBlackThresholdMsec'] as int?,
);
}