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