NumberInputFormatter.currency constructor

NumberInputFormatter.currency({
  1. String? locale,
  2. String? name,
  3. String? symbol,
  4. int? decimalDigits,
  5. String? customPattern,
})

Implementation

NumberInputFormatter.currency({this.locale, String? name, String? symbol, int? decimalDigits, String? customPattern}) : format = NumberFormat.currency(locale: locale, symbol: symbol, name: name, customPattern: customPattern, decimalDigits: decimalDigits);