maxLengthErrorText method

  1. @override
String maxLengthErrorText(
  1. Object maxLength
)
override

No description provided for @maxLengthErrorText.

In en, this message translates to: 'Value must have a length less than or equal to {maxLength}'

Implementation

@override
String maxLengthErrorText(Object maxLength) {
  return 'Besedilo mora biti krajše ali enako $maxLength znakov.';
}