TimecodeConfig.fromJson constructor
Implementation
factory TimecodeConfig.fromJson(Map<String, dynamic> json) {
return TimecodeConfig(
source: (json['source'] as String).toTimecodeConfigSource(),
syncThreshold: json['syncThreshold'] as int?,
);
}