youtube_explode/lib/src/videos/streams/video_resolution.g.dart

20 lines
589 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'video_resolution.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
VideoResolution _$VideoResolutionFromJson(Map<String, dynamic> json) =>
VideoResolution(
json['width'] as int,
json['height'] as int,
);
Map<String, dynamic> _$VideoResolutionToJson(VideoResolution instance) =>
<String, dynamic>{
'width': instance.width,
'height': instance.height,
};