FinancialInstitutionInformationDto constructor

FinancialInstitutionInformationDto({
  1. String? name,
  2. String? key,
  3. String? bankAccount,
  4. String? bic,
  5. String? proxyBankAccount,
  6. String? proxyBic,
  7. Set<String> preferredFiiForPartners = const {},
  8. String? encryptedSelf,
})

Returns a new FinancialInstitutionInformationDto instance.

Implementation

FinancialInstitutionInformationDto({
  this.name,
  this.key,
  this.bankAccount,
  this.bic,
  this.proxyBankAccount,
  this.proxyBic,
  this.preferredFiiForPartners = const {},
  this.encryptedSelf,
});