Address constructor

Address(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. String? carrierFacility,
  7. String? city,
  8. String? company,
  9. String? country,
  10. String? email,
  11. String? federalTaxId,
  12. String? message,
  13. String? name,
  14. String? phone,
  15. bool? isResidential,
  16. String? state,
  17. String? stateTaxId,
  18. String? street1,
  19. String? street2,
  20. Verifications? verifications,
  21. String? zip,
  22. String? error
)

Implementation

Address(
    id,
    createdAt,
    updatedAt,
    objectType,
    mode,
    this.carrierFacility,
    this.city,
    this.company,
    this.country,
    this.email,
    this.federalTaxId,
    this.message,
    this.name,
    this.phone,
    this.isResidential,
    this.state,
    this.stateTaxId,
    this.street1,
    this.street2,
    this.verifications,
    this.zip,
    this.error)
    : super(id, createdAt, updatedAt, objectType, mode);