isResponding property
bool
get
isResponding
Implementation
bool get isResponding {
return switch (status) {
ChatStatus.speaking => true,
ChatStatus.answeringAndSpeaking => true,
ChatStatus.sendingPrompt => true,
ChatStatus.answering => true,
_ => false,
};
}