report method

void report(
  1. String checkName
)

Implementation

void report(String checkName) {
  if (!VERBOSE) return;
  print("Check " + checkName + ": " + (_isValid ? "passed" : "FAILED"));
}