// GENERATED CODE - DO NOT MODIFY BY HAND part of 'closed_caption.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ClosedCaption _$ClosedCaptionFromJson(Map json) { return ClosedCaption( json['text'] as String, json['offset'] == null ? null : Duration(microseconds: json['offset'] as int), json['duration'] == null ? null : Duration(microseconds: json['duration'] as int), (json['parts'] as List)?.map((e) => e == null ? null : ClosedCaptionPart.fromJson(e as Map)), ); } Map _$ClosedCaptionToJson(ClosedCaption instance) => { 'text': instance.text, 'offset': instance.offset?.inMicroseconds, 'duration': instance.duration?.inMicroseconds, 'parts': instance.parts, };