import 'package:json_annotation/json_annotation.dart'; /// address : "" /// area : "" /// city : "" /// cityInfo : "" /// id : 0 /// isDefault : true /// latitude : 0 /// longitude : 0 /// mid : 0 /// phone : "" /// province : "" /// tag : "" /// username : "" part 'address.g.dart'; @JsonSerializable() class Address { Address(); String address; String area; String city; String cityInfo; String id; bool isDefault; String latitude; String longitude; String mid; String phone; String province; String tag; String username; factory Address.fromJson(Map json) => _$AddressFromJson(json); Map toJson() => _$AddressToJson(this); }