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

19 lines
579 B
Dart

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