fromString static method

CheckResult fromString(
  1. String s
)

Implementation

static CheckResult fromString(String s) => switch (s) {
  "notPerformed" => notPerformed,
  "pass" => pass,
  "fail" => fail,
  _ => notPerformed,
};