Address constructor

const Address({
  1. required String countryCode,
  2. required String state,
  3. required String city,
  4. required String streetLine1,
  5. required String streetLine2,
  6. required String postalCode,
})

Describes an address

Implementation

const Address({
  required this.countryCode,
  required this.state,
  required this.city,
  required this.streetLine1,
  required this.streetLine2,
  required this.postalCode,
});