AccountModel constructor

AccountModel(
  1. AddressModel? _address,
  2. String _fullAddress, {
  3. String? priceRange,
  4. bool? physicalProducts,
  5. String? businessDescription,
  6. String? personType,
  7. bool? acceptAutomaticTransfer,
  8. String? cnpj,
  9. String? companyName,
  10. String? cpf,
  11. String? name,
  12. String? phone,
  13. String? respName,
  14. String? respCPF,
  15. String? bank,
  16. String? bankAgency,
  17. String? accountType,
  18. String? bankAccountNumber,
})

Implementation

AccountModel(
  this._address,
  this._fullAddress, {
  this.priceRange,
  this.physicalProducts,
  this.businessDescription,
  this.personType,
  this.acceptAutomaticTransfer,
  this.cnpj,
  this.companyName,
  this.cpf,
  this.name,
  this.phone,
  this.respName,
  this.respCPF,
  this.bank,
  this.bankAgency,
  this.accountType,
  this.bankAccountNumber,
});