ruleMinListLength method

  1. @override
String ruleMinListLength(
  1. num min
)
override

The rule min list length error message

In en, this message translates to: '{min, plural, other{The list length can't be less than {min}}}'

Implementation

@override
String ruleMinListLength(num min) {
  String _temp0 = intl.Intl.pluralLogic(
    min,
    locale: localeName,
    other: 'El tamaƱo de la lista no puede ser inferior a $min',
  );
  return '$_temp0';
}