BankModel constructor

BankModel({
  1. required String idx,
  2. required String name,
  3. required String shortName,
})

Default constructor for BankModel.

Implementation

BankModel({
  required this.idx,
  required this.logo,
  required this.name,
  required this.shortName,
});