Address constructor
Address(
- String address, {
- AddressLabel label = AddressLabel.home,
- String customLabel = '',
- String street = '',
- String pobox = '',
- String neighborhood = '',
- String city = '',
- String state = '',
- String postalCode = '',
- String country = '',
- String isoCountry = '',
- String subAdminArea = '',
- String subLocality = '',
Implementation
Address(
this.address, {
this.label = AddressLabel.home,
this.customLabel = '',
this.street = '',
this.pobox = '',
this.neighborhood = '',
this.city = '',
this.state = '',
this.postalCode = '',
this.country = '',
this.isoCountry = '',
this.subAdminArea = '',
this.subLocality = '',
});