getGroup method Null safety
- String groupKey,
- dynamic groupID
Returns a MixpanelGroup object that can be used to set and increment Group Analytics properties.
groupKey
String identifying the type of group (must be already in use as a group key)groupID
Object identifying the specific group return an instance of MixpanelGroup that you can use to update records in Mixpanel Group Analytics
Implementation
MixpanelGroup getGroup(String groupKey, dynamic groupID) {
return new MixpanelGroup(this._token, groupKey, groupID);
}