notEqualErrorText method

  1. @override
String notEqualErrorText(
  1. String value
)
override

No description provided for @notEqualErrorText.

In en, this message translates to: 'This field value must not be equal to {value}.'

Implementation

@override
String notEqualErrorText(String value) {
  return '이 필드의 값은 반드시 $value와 달라야 합니다.';
}