ruleMinStringLength method
The rule min string error message
In en, this message translates to: '{min, plural, =1{The text length can't be less than {min} character} other{The text length can't be less than {min} characters}}'
Implementation
@override
String ruleMinStringLength(num min) {
String _temp0 = intl.Intl.pluralLogic(
min,
locale: localeName,
other: 'La longitud del texto no puede ser inferior a $min caracteres',
one: 'La longitud del texto no puede ser inferior a $min carácter',
);
return '$_temp0';
}