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