validator method

  1. @override
EskResult validator(
  1. dynamic value
)
override

Validates the given value and returns the result.

Don't call directly, call validate instead.

Implementation

@override
EskResult validator(dynamic value) {
  return _validator.call(value);
}