onUserStoppedSpeaking property

Stream get onUserStoppedSpeaking

A stream that emits events when a user stops speaking.

This stream listens for events indicating that a user has stopped speaking. Each event contains information about the user who stopped speaking. Use this stream to update your UI or perform actions upon user stopping speaking.

Usage example:

Mirrorfly.onUserStoppedSpeaking.listen((userStoppedSpeakingData) {
  // Handle the event when a user stops speaking
  print("User stopped speaking: $userStoppedSpeakingData");
});

Implementation

static Stream<dynamic> get onUserStoppedSpeaking =>
    FlyChatFlutterPlatform.instance.onUserStoppedSpeaking;