fromValue static method

OTPStatus fromValue(
  1. String value
)

Implementation

static OTPStatus fromValue(String value) {
  return OTPStatus.values.firstWhere(
    (status) => status.value == value,
    orElse: () =>
        throw ArgumentError('No enum value with that value: $value'),
  );
}