BankAccount constructor

BankAccount({
  1. String? id,
  2. String? name,
  3. String? country,
  4. BankAccountTypeEnum? accountType,
  5. String? accountNumber,
  6. String? bankCode,
  7. String? created,
  8. bool? isDefault,
  9. String? entityId,
  10. String? entityType,
  11. String? inputType,
  12. String? phone,
  13. String? routingNumber,
  14. String? updated,
})

Implementation

BankAccount({
  this.id, this.name, this.country, this.accountType, this.accountNumber,
  this.bankCode, this.created, this.isDefault, this.entityId,
  this.entityType, this.inputType, this.phone, this.routingNumber,
  this.updated
});