LokotroBankAccount constructor

LokotroBankAccount({
  1. required String id,
  2. required String identifier,
  3. required String accountNumber,
  4. required String accountLabel,
  5. String? createdAt,
  6. LokotroBank? refBank,
  7. LokotroBankCurrency? refCurrency,
})

Implementation

LokotroBankAccount({
  required this.id,
  required this.identifier,
  required this.accountNumber,
  required this.accountLabel,
  this.createdAt,
  this.refBank,
  this.refCurrency,
});