invalidRangeMax method

  1. @override
String invalidRangeMax(
  1. int max
)
override

No description provided for @invalidRangeMax.

In en, this message translates to: 'Input should be less than or equal to {max}.'

Implementation

@override
String invalidRangeMax(int max) {
  return 'Input should be less than or equal to $max.';
}