Bank class

Informações sobre sistema bancário.

Constructors

Bank({String? ispb, String? name, int? code, String? fullName, Map<String, dynamic>? errors})
Informações disponíveis.
Bank.fromJson(Map<String, dynamic> json)
Obter os dados por um json.
factory

Properties

code int?
Código do banco.
final
errors Map<String, dynamic>?
Erros encontrados na requisição.
final
fullName String?
Nome completo do banco.
final
hashCode int
The hash code for this object.
no setterinherited
ispb String?
IPSB do banco.
final
name String?
Nome do banco.
final
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
toJson() Map<String, dynamic>
Transformar os dados em um json.
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

allBankInformation() Future<List<Bank>>
Retorna informações de todos os bancos do Brasil.
searchBankInformation({required int bankCode}) Future<Bank>
Busca as informações de um banco a partir de um código.