fromRawValueOrNull static method

ZSTrialMode? fromRawValueOrNull(
  1. String value
)

Implementation

static ZSTrialMode? fromRawValueOrNull(String value) {
  for (final m in ZSTrialMode.values) {
    if (m.rawValue == value) return m;
  }
  return null;
}