onMuteStatusUpdated property
Stream
get
onMuteStatusUpdated
A stream that emits events when mute status is updated.
This stream listens for events indicating that the mute status of a user has been updated. Each event contains information about the updated mute status. Use this stream to update your UI or perform actions upon mute status update.
Usage example:
Mirrorfly.onMuteStatusUpdated.listen((muteStatusData) {
// Handle the event when mute status is updated
print("Mute status updated: $muteStatusData");
});
Implementation
static Stream<dynamic> get onMuteStatusUpdated =>
FlyChatFlutterPlatform.instance.onMuteStatusUpdated;