Bank constructor

Bank(
  1. {int? id,
  2. required String name,
  3. required String abbreviation,
  4. String? description,
  5. int? active,
  6. DateTime? createdAt,
  7. DateTime? updatedAt}
)

Implementation

Bank({
  this.id,
  required this.name,
  required this.abbreviation,
  this.description,
  this.active,
  this.createdAt,
  this.updatedAt,
});