ThousandsSeparatorTextInputFormatter constructor
ThousandsSeparatorTextInputFormatter({})
Implementation
ThousandsSeparatorTextInputFormatter({
this.groupSeparator = ',',
this.decimalSeparator = '.',
this.allowedDecimals = 1000,
}) : assert(groupSeparator.length == 1),
assert(decimalSeparator.length == 1),
assert(groupSeparator != decimalSeparator),
assert(allowedDecimals >= 0);