Address constructor

Address({
  1. String? city,
  2. String? country,
  3. String? postalCode,
  4. String? state,
  5. String? street,
  6. Map<String, Object> others = const {},
})

Implementation

Address({this.city, this.country, this.postalCode, this.state, this.street, this.others = const {}});