getIntFormatter static method
Implementation
static List<TextInputFormatter> getIntFormatter({double? maxValue}) => [
_IntTextInputFormatter(maxValue: maxValue),
FilteringTextInputFormatter.allow(RegExp('[1234567890]'))
];
static List<TextInputFormatter> getIntFormatter({double? maxValue}) => [
_IntTextInputFormatter(maxValue: maxValue),
FilteringTextInputFormatter.allow(RegExp('[1234567890]'))
];