Address constructor
Address({
- String addressName = "",
- String fullname = "",
- String address = "",
- String note = "",
- int addressId = -1,
- String latitude = "",
- String longitude = "",
- int customerAddressID = -1,
- String phoneNumber = "",
- int countryID = -1,
- String countryName = "",
- int provinceID = -1,
- String provinceName = "",
- int cityID = -1,
- String cityName = "",
- int districtID = -1,
- String districtName = "",
- int subdistrictID = -1,
- String subdistrictName = "",
- String postalCode = "",
- String addressNotes = "",
- bool isDefault = false,
- String langtitude = "",
- String longtitude = "",
- ShippingCoverage? shippingCoverage,
Implementation
Address({
this.addressName = "",
this.fullname = "",
this.address = "",
this.note = "",
this.addressId = -1,
this.latitude = "",
this.longitude = "",
this.customerAddressID = -1,
this.phoneNumber = "",
this.countryID = -1,
this.countryName = "",
this.provinceID = -1,
this.provinceName = "",
this.cityID = -1,
this.cityName = "",
this.districtID = -1,
this.districtName = "",
this.subdistrictID = -1,
this.subdistrictName = "",
this.postalCode = "",
this.addressNotes = "",
this.isDefault = false,
this.langtitude = "",
this.longtitude = "",
this.shippingCoverage,
});