usersIBlockedListFetched property
Stream
get
usersIBlockedListFetched
A stream that emits events when the list of users the current user has blocked is fetched.
This stream listens for events indicating that the list of users blocked by the current user has been fetched on the platform. Each event contains information about the blocked users list. Use this stream to update your UI or perform actions upon fetching the blocked users list.
Usage example:
Mirrorfly.usersIBlockedListFetched.listen((blockedListEventData) {
// Handle the event when the blocked users list is fetched
print("Blocked users list fetched: $blockedListEventData");
});
Implementation
static Stream<dynamic> get usersIBlockedListFetched =>
FlyChatFlutterPlatform.instance.usersIBlockedListFetched;