NiceCurrencyInput constructor

const NiceCurrencyInput({
  1. Key? key,
  2. double? value,
  3. ValueChanged<double?>? onChanged,
  4. String? label,
  5. String currency = 'PLN',
  6. String symbol = 'zł',
  7. int decimalPlaces = 2,
  8. bool enabled = true,
})

Implementation

const NiceCurrencyInput({
  super.key,
  this.value,
  this.onChanged,
  this.label,
  this.currency = 'PLN',
  this.symbol = 'zł',
  this.decimalPlaces = 2,
  this.enabled = true,
});