usersProfilesFetched property

Stream get usersProfilesFetched

A stream that emits events when multiple user profiles are fetched.

This stream listens for events indicating that multiple user profiles have been fetched on the platform. Each event contains information about the fetched user profiles. Use this stream to update your UI or perform actions upon fetching multiple user profiles.

Usage example:

Mirrorfly.usersProfilesFetched.listen((profilesEventData) {
  // Handle the event when multiple user profiles are fetched
  print("User profiles fetched: $profilesEventData");
});

Implementation

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