ruleMaxNumber method
The rule max number error message
In en, this message translates to: '{max, plural, other{The number can't be greater than {max}}}'
Implementation
@override
String ruleMaxNumber(num max) {
String _temp0 = intl.Intl.pluralLogic(
max,
locale: localeName,
other: 'Der Wert der Zahl darf nicht größer als $max sein',
);
return '$_temp0';
}