Bank constructor

Bank({
  1. required int id,
  2. required String name,
  3. required String code,
  4. required String bin,
  5. required String shortName,
  6. required int transferSupported,
  7. required int lookupSupported,
})

Implementation

Bank({
  required this.id,
  required this.name,
  required this.code,
  required this.bin,
  required this.shortName,
  required this.logo,
  required this.transferSupported,
  required this.lookupSupported,
});