28 lines
876 B
Dart
28 lines
876 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'image_resp.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
ImageResp _$ImageRespFromJson(Map<String, dynamic> 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<String, dynamic> _$ImageRespToJson(ImageResp instance) => <String, dynamic>{
|
|
'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,
|
|
};
|