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 '이 필드는 반드시 $minLength자 이상이어야 합니다.';
}