minLengthErrorText method

  1. @override
String minLengthErrorText(
  1. int minLength
)
override

No description provided for @minLengthErrorText.

In en, this message translates to: 'Value must have a length greater than or equal to {minLength}.'

Implementation

@override
String minLengthErrorText(int minLength) {
  return 'La valeur doit avoir une longueur supérieure ou égale à $minLength.';
}