call method

String? call(
  1. T value
)

call is a special function that makes a class callable returns null if the input is valid otherwise it returns the provided error errorText

Implementation

String? call(T value) {
  return isValid(value) ? null : errorText;
}