fromString static method
Implementation
static VoiceSessionState fromString(String value) {
return VoiceSessionState.values.firstWhere(
(e) => e.value == value,
orElse: () => VoiceSessionState.idle,
);
}
static VoiceSessionState fromString(String value) {
return VoiceSessionState.values.firstWhere(
(e) => e.value == value,
orElse: () => VoiceSessionState.idle,
);
}