call method

String? call(
  1. T? value
)

Implementation

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