Currency constructor

Currency({
  1. required String symbol,
  2. required String name,
  3. required String symbolNative,
  4. required int decimalDigits,
  5. required double rounding,
  6. required String code,
  7. required String namePlural,
})

Implementation

Currency({
  required this.symbol,
  required this.name,
  required this.symbolNative,
  required this.decimalDigits,
  required this.rounding,
  required this.code,
  required this.namePlural,
});