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