You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
631 B
17 lines
631 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'picked_city_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
PickedCityModel _$PickedCityModelFromJson(Map<String, dynamic> json) =>
|
|
PickedCityModel(
|
|
province:
|
|
ChinaRegionModel.fromJson(json['province'] as Map<String, dynamic>),
|
|
city: ChinaRegionModel.fromJson(json['city'] as Map<String, dynamic>),
|
|
district:
|
|
ChinaRegionModel.fromJson(json['district'] as Map<String, dynamic>),
|
|
);
|