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.

31 lines
478 B

class AddressModel{
int? id;
String? name;
String? mobile;
String? province;
String? city;
String? district;
String? address;
int? isDefault;
AddressModel({
this.id,
this.name,
this.mobile,
this.province,
this.city,
this.district,
this.address,
this.isDefault,
});
factory AddressModel.empty() {
return AddressModel(id: null,name: '',mobile: '',province: '',city: '',district: '',address: '',isDefault: 0);
}
}