valueOf static method

Returns KnownCreateResultValidationStatus associated with value, otherwise null.

Implementation

static KnownCreateResultValidationStatus? valueOf(final String? value) {
  if (value == null) return null;

  for (final $value in values) {
    if ($value.value == value) {
      return $value;
    }
  }

  return null;
}