validate method

  1. @override
String? validate(
  1. String? value
)
override

Validates the given value and returns an error message if the value is invalid.

Implementation

@override
String? validate(String? value) {
  if (value != null) {
    String notEndWithText = useTrim ? notEndWith.trim() : notEndWith;
    String text = useTrim ? value.trim() : value;
    if (!caseSensitive) {
      if (text.toLowerCase().endsWith(notEndWithText.toLowerCase())) {
        return getErrorMessage(
          EasyValidatorMessages.instance.notEndWith,
          notEndWith,
        );
      }
    } else {
      if (text.endsWith(notEndWithText)) {
        return getErrorMessage(
          EasyValidatorMessages.instance.notEndWith,
          notEndWith,
        );
      }
    }
  }

  return null;
}