logJoinGroup method
Logs the standard join_group
event.
Log this event when a user joins a group such as a guild, team or family. Use this event to analyze how popular certain groups or social features are in your app.
Implementation
@override
Future<void> logJoinGroup({
required String groupId,
AnalyticsCallOptions? callOptions,
Map<String, Object>? parameters,
}) async {
await _firebaseAnalytics.logJoinGroup(
groupId: groupId,
callOptions: callOptions,
parameters: parameters,
);
}