Address constructor 
    
      
      Address(- dynamic id, 
 
- dynamic createdAt, 
 
- dynamic updatedAt, 
 
- dynamic objectType, 
 
- dynamic mode, 
 
- String? carrierFacility, 
 
- String? city, 
 
- String? company, 
 
- String? country, 
 
- String? email, 
 
- String? federalTaxId, 
 
- String? message, 
 
- String? name, 
 
- String? phone, 
 
- bool? isResidential, 
 
- String? state, 
 
- String? stateTaxId, 
 
- String? street1, 
 
- String? street2, 
 
- Verifications? verifications, 
 
- String? zip, 
 
- 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);