BankAccount constructor

BankAccount({
  1. String? id,
  2. int? version,
  3. BankAccountStatus? status,
  4. String? locationId,
  5. String? referenceId,
  6. String? country,
  7. String? currency,
  8. String? fingerprint,
  9. BankAccountType? accountType,
  10. String? accountNumberSuffix,
  11. String? bankName,
  12. bool? creditable,
  13. bool? debitable,
  14. String? debitMandateReferenceId,
  15. String? holderName,
  16. String? primaryBankIdentificationNumber,
  17. String? secondaryBankIdentificationNumber,
})

Implementation

BankAccount({
  this.id, this.version, this.status, this.locationId, this.referenceId,
this.country, this.currency, this.fingerprint, this.accountType,
this.accountNumberSuffix, this.bankName, this.creditable,
this.debitable, this.debitMandateReferenceId, this.holderName,
this.primaryBankIdentificationNumber, this.secondaryBankIdentificationNumber
});