// GENERATED CODE - DO NOT MODIFY BY HAND part of 'image_list_resp.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** ImageListResp _$ImageListRespFromJson(Map json) => ImageListResp( (json['list'] as List) .map((e) => ImageResp.fromJson(e as Map)) .toList(), json['total'] as int, json['hasNext'] as bool, ); Map _$ImageListRespToJson(ImageListResp instance) => { 'list': instance.list, 'total': instance.total, 'hasNext': instance.hasNext, };