identifyGroup method
Implementation
Future<bool> identifyGroup({
required String userId,
required String groupId,
Map<String, dynamic> traits = const {},
}) async {
_userId = userId;
_groupId = groupId;
return await _identifyNullableGroup(
userId: userId,
groupId: groupId,
traits: traits,
methodCall: "identifyGroup()",
);
}