isInvalid method

bool isInvalid(
  1. T? object
)

Implementation

bool isInvalid(T? object) {
  var result = !isValid(object);
  return result;
}