LokotroBankAccount constructor
LokotroBankAccount({
- required String id,
- required String identifier,
- required String accountNumber,
- required String accountLabel,
- String? createdAt,
- LokotroBank? refBank,
- LokotroBankCurrency? refCurrency,
Implementation
LokotroBankAccount({
required this.id,
required this.identifier,
required this.accountNumber,
required this.accountLabel,
this.createdAt,
this.refBank,
this.refCurrency,
});