LokotroCurrency constructor

LokotroCurrency({
  1. required String code,
  2. required String name,
  3. required String symbol,
  4. int decimalPlaces = 2,
  5. bool isSupported = true,
})

Implementation

LokotroCurrency({
  required this.code,
  required this.name,
  required this.symbol,
  this.decimalPlaces = 2,
  this.isSupported = true,
});