LokotroBankEntity constructor

LokotroBankEntity({
  1. required String id,
  2. required String name,
  3. String? countryFlag,
})

Implementation

LokotroBankEntity({
  required this.id,
  required this.name,
  this.countryFlag,
});