TimecodeConfig.fromJson constructor
Implementation
factory TimecodeConfig.fromJson(Map<String, dynamic> json) {
return TimecodeConfig(
anchor: json['anchor'] as String?,
source: (json['source'] as String?)?.toTimecodeSource(),
start: json['start'] as String?,
timestampOffset: json['timestampOffset'] as String?,
);
}