InputFormatterError.maxValue constructor

InputFormatterError.maxValue()

The input value exceeds the set maximum value.

Implementation

factory InputFormatterError.maxValue() => InputFormatterError(
      code: 2,
      msg:
          'The value of the input value is greater than the maximum value set.',
    );