PaymentBillingInfo constructor

PaymentBillingInfo({
  1. String? billingName,
  2. String? street,
  3. String? zip,
  4. String? city,
  5. String? state,
  6. String? country,
  7. String? countryCode,
  8. String? companyName,
  9. String? vat,
  10. String? companyNumber,
  11. String? currency,
  12. int? id,
  13. int? isDefault,
  14. int? createdAt,
  15. int? updatedAt,
})

Implementation

PaymentBillingInfo(
    {this.billingName,
    this.street,
    this.zip,
    this.city,
    this.state,
    this.country,
    this.countryCode,
    this.companyName,
    this.vat,
    this.companyNumber,
    this.currency,
    this.id,
    this.isDefault,
    this.createdAt,
    this.updatedAt});