endsWithErrorText method

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

No description provided for @endsWithErrorText.

In en, this message translates to: 'Value must end with {value}.'

Implementation

@override
String endsWithErrorText(String value) {
  return '값은 $value로 끝나야 합니다.';
}