IntegerTextInputFormatter constructor

const IntegerTextInputFormatter({
  1. int maxLength = 20,
  2. bool allowNegative = false,
  3. String exceedMaxLengthMessage = "Exceed max length",
  4. String invalidNegativeMessage = "Invalid negative number",
})

Implementation

const IntegerTextInputFormatter({
  this.maxLength=20,
  this.allowNegative = false,
  this.exceedMaxLengthMessage = "Exceed max length",
  this.invalidNegativeMessage = "Invalid negative number",
});