Address constructor

Address({
  1. String? extra,
  2. int? client_id,
  3. string? country_code,
  4. string? state,
  5. string? city,
  6. string? street_line1,
  7. string? street_line2,
  8. string? postal_code,
})

Implementation

Address({
  super.extra,
  super.client_id,
  this.country_code,
  this.state,
  this.city,
  this.street_line1,
  this.street_line2,
  this.postal_code,
});