ShippingAddress constructor

ShippingAddress(
  1. int id,
  2. String? name,
  3. bool isDefault,
  4. DateTime? updatedAt,
  5. String? type,
  6. String? baseAddress,
  7. String? detailAddress,
  8. String? receiverName,
  9. String? receiverPhoneNumber1,
  10. String? receiverPhoneNumber2,
  11. String? zoneNumber,
  12. String? zipCode,
)

Implementation

ShippingAddress(
    this.id,
    this.name,
    this.isDefault,
    this.updatedAt,
    this.type,
    this.baseAddress,
    this.detailAddress,
    this.receiverName,
    this.receiverPhoneNumber1,
    this.receiverPhoneNumber2,
    this.zoneNumber,
    this.zipCode);