DeliveryAddress constructor

DeliveryAddress({
  1. String? street,
  2. String? number,
  3. String? complement,
  4. String? zipCode,
  5. String? city,
  6. String? state,
  7. String? country,
  8. String? district,
})

Implementation

DeliveryAddress(
    {this.street,
    this.number,
    this.complement,
    this.zipCode,
    this.city,
    this.state,
    this.country,
    this.district});