// GENERATED CODE - DO NOT MODIFY BY HAND part of 'common_point_response.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** CommonPointResponse _$CommonPointResponseFromJson(Map json) => CommonPointResponse( list: (json['list'] as List?) ?.map((e) => CommonPointBean.fromJson(e as Map)) .toList(), ); Map _$CommonPointResponseToJson( CommonPointResponse instance) => { 'list': instance.list, };