isValid method

  1. @mustCallSuper
bool isValid(
  1. T instance
)

Tells whether the instance is valid.

Implementation

@mustCallSuper
bool isValid(T instance) {
  return true;
}