isVoiceMode property

bool get isVoiceMode

Implementation

bool get isVoiceMode {
  if (voiceModeProvider.isInVoiceMode) return true;
  return switch (status) {
    ChatStatus.answeringAndSpeaking => true,
    ChatStatus.listeningToUser => true,
    ChatStatus.transcribing => true,
    ChatStatus.speaking => true,
    _ => false,
  };
}