fromString static method

VoiceSessionState fromString(
  1. String value
)

Implementation

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