Currency constructor

Currency(
  1. int decimals,
  2. String? symbol,
  3. String? name
)

Implementation

Currency(
    this.decimals,
    this.symbol,
    this.name,
    );