isValid method

bool isValid()

Are every input Valid?

Implementation

bool isValid() {
  return _inputs.every((input) => input.isValid);
}