AddressFormData constructor

AddressFormData({
  1. String? street,
  2. String? city,
  3. String? state,
  4. String? country,
  5. String? postalCode,
  6. double? latitude,
  7. double? longitude,
  8. bool isFromGooglePlaces = false,
})

Implementation

AddressFormData({
  this.street,
  this.city,
  this.state,
  this.country,
  this.postalCode,
  this.latitude,
  this.longitude,
  this.isFromGooglePlaces = false,
});