BankAccountModel constructor

BankAccountModel({
  1. int? accountType,
  2. String? bankName,
  3. String? currency,
  4. String? swiftCode,
  5. String? bicCode,
  6. String? bankAddress,
  7. String? cryptoWalletaddress,
  8. int? id,
  9. String? accountNumber,
  10. String? fullName,
})

Implementation

BankAccountModel({
  this.accountType,
  this.bankName,
  this.currency,
  this.swiftCode,
  this.bicCode,
  this.bankAddress,
  this.cryptoWalletaddress,
  this.id,
  this.accountNumber,
  this.fullName,
});