BankAccount constructor

BankAccount({
  1. int? id,
  2. dynamic type,
  3. String? bank,
  4. String? accountName,
  5. String? accountType,
  6. String? accountNumber,
  7. String? routingNumber,
  8. dynamic accountLimit,
  9. String? status,
  10. String? accountOwnerName,
  11. String? accountOwnerEmail,
  12. String? accountOwnerPhone,
  13. DateTime? createdAt,
})

Implementation

BankAccount({
  this.id,
  this.type,
  this.bank,
  this.accountName,
  this.accountType,
  this.accountNumber,
  this.routingNumber,
  this.accountLimit,
  this.status,
  this.accountOwnerName,
  this.accountOwnerEmail,
  this.accountOwnerPhone,
  this.createdAt,
});