onChatMuteStatusUpdated property
Stream
get
onChatMuteStatusUpdated
A stream that emits an event when a chat's mute status is updated.
This stream listens for mute/unmute actions on a chat. Use this to reflect the updated mute status in the UI.
Usage example:
Mirrorfly.onChatMuteStatusUpdated.listen((event) {
// Handle chat mute status update
print("Chat mute status updated: $event");
});
Implementation
static Stream<dynamic> get onChatMuteStatusUpdated =>
FlyChatFlutterPlatform.instance.onChatMuteStatusUpdated;