// GENERATED CODE - DO NOT MODIFY BY HAND part of 'image_resp.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ImageResp _$ImageRespFromJson(Map json) => ImageResp( json['id'] as int, json['file_name'] as String, json['file_path'] as String, json['upload_time'] as int, json['size'] as int, json['width'] as int, json['height'] as int, ); Map _$ImageRespToJson(ImageResp instance) => { 'id': instance.id, 'file_name': instance.file_name, 'file_path': instance.file_path, 'upload_time': instance.upload_time, 'size': instance.size, 'width': instance.width, 'height': instance.height, };