LocationAddress constructor

const LocationAddress({
  1. String? city,
  2. required String country,
  3. String? line1,
  4. String? line2,
  5. String? postalCode,
  6. String? state,
})

create_location_address_param

The full address of the location.

Implementation

const LocationAddress({
  this.city,
  required this.country,
  this.line1,
  this.line2,
  this.postalCode,
  this.state,
});