youtube_explode/lib/src/videos/closed_captions/closed_caption_format.g.dart

20 lines
581 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'closed_caption_format.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
ClosedCaptionFormat _$ClosedCaptionFormatFromJson(Map<String, dynamic> json) {
return ClosedCaptionFormat(
json['formatCode'] as String,
);
}
Map<String, dynamic> _$ClosedCaptionFormatToJson(
ClosedCaptionFormat instance) =>
<String, dynamic>{
'formatCode': instance.formatCode,
};