NiceCurrencyCell constructor

const NiceCurrencyCell({
  1. Key? key,
  2. required double amount,
  3. String currency = 'PLN',
  4. bool showSign = false,
  5. int decimals = 2,
})

Implementation

const NiceCurrencyCell({
  super.key,
  required this.amount,
  this.currency = 'PLN',
  this.showSign = false,
  this.decimals = 2,
});