onFetchingGroupMembersCompleted property

Stream get onFetchingGroupMembersCompleted

A stream that emits events when the fetching of group members is completed.

This stream listens for events indicating that the process of fetching group members from the server has been completed. Each event contains information about the group and its members. Use this stream to update your UI or perform actions upon the completion of fetching group members.

Usage example:

Mirrorfly.onFetchingGroupMembersCompleted.listen((groupMembersData) {
  // Handle the completion of fetching group members
  print("Fetching group members completed: $groupMembersData");
});

Implementation

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