Currency constructor

const Currency(
  1. String name, [
  2. String? symbol,
  3. String? isoCode,
  4. String? fractUnit,
])

Implementation

const Currency(
  this.name, [
  this.symbol,
  this.isoCode,
  this.fractUnit,
]);