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