AddressComponents constructor

const AddressComponents({
  1. String? street,
  2. String? city,
  3. String? state,
  4. String? country,
  5. String? postalCode,
})

Implementation

const AddressComponents({
  this.street,
  this.city,
  this.state,
  this.country,
  this.postalCode,
});