CurrencyTextInputFormatter constructor

CurrencyTextInputFormatter({
  1. String? locale,
  2. String? name,
  3. String? symbol,
  4. int? decimalDigits,
  5. String? customPattern,
  6. bool turnOffGrouping = false,
})

Implementation

CurrencyTextInputFormatter({
  this.locale,
  this.name,
  this.symbol,
  this.decimalDigits,
  this.customPattern,
  this.turnOffGrouping = false,
});