AccountModel constructor
AccountModel(
- AddressModel? _address,
- String _fullAddress, {
- String? priceRange,
- bool? physicalProducts,
- String? businessDescription,
- String? personType,
- bool? acceptAutomaticTransfer,
- String? cnpj,
- String? companyName,
- String? cpf,
- String? name,
- String? phone,
- String? respName,
- String? respCPF,
- String? bank,
- String? bankAgency,
- String? accountType,
- 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,
});