BankAccountModel class

BankAccountModel @param branchNumber: 4 digit branch number (agência) @param accountNumberWithDigit: can be in format "#-0" or "#0" @param accountType: checking or saving

Constructors

BankAccountModel({required int bankCode, required String branchNumber, required String accountNumberWithDigit, required AccountType accountType})
@construct BankAccountModel

Properties

accountNumberWithDigit String
@var accountNumberWithDigit: should receive full account number, /// with digit
final
accountType AccountType
@var accountType: checking or saving
final
bankCode int
@var bankCode: should receive three digit Brazilian bank code
final
branchNumber String
@var branchNumber: necessary for some banks validation, such as Itau
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited