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