onGroupProfileFetched property
Stream
get
onGroupProfileFetched
A stream that emits events when a group profile is fetched.
This stream listens for events indicating that a group profile has been successfully fetched from the server. Each event contains the data of the fetched group profile. Use this stream to update your UI or perform actions upon receiving a group profile.
Usage example:
Mirrorfly.onGroupProfileFetched.listen((groupProfileData) {
// Handle the fetched group profile
print("Group profile fetched: $groupProfileData");
});
Implementation
static Stream<dynamic> get onGroupProfileFetched =>
FlyChatFlutterPlatform.instance.onGroupProfileFetched;