BankInfo class
Constructors
- BankInfo({required String name, required String accountNumber, required String agencyNumber, required String accountType})
- BankInfo.fromJson(String source)
-
factory
-
BankInfo.fromMap(Map<
String, dynamic> map) -
factory
Properties
- accountNumber ↔ String
-
Número da Conta
Formatos (99999999-D, XXX99999999-D onde X é Operação, 9999999-D, 99999-D)
getter/setter pair
- accountType ↔ String
-
Tipo da conta: 'Corrente', 'Poupança'
getter/setter pair
- agencyNumber ↔ String
-
Agência da Conta
Formatos (9999-D, 9999)
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setteroverride
- name ↔ String
-
Nome da instituição bancária
Suportados : 'Itaú', 'Bradesco', 'Caixa Econômica', 'Banco do Brasil', 'Santander'
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
copyWith(
{String? name, String? accountNumber, String? agencyNumber, String? accountType}) → BankInfo -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → String -
toMap(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object o) → bool -
The equality operator.
override