Currency constructor
const
Currency({})
Implementation
const Currency({
required this.code,
required this.symbol,
required this.name,
this.decimals = 2,
this.symbolBefore = true,
this.thousandSeparator = ',',
this.decimalSeparator = '.',
});