group method
Implementation
@override
Future<void> group({
required String groupType,
required String groupKey,
Map<String, Object>? groupProperties,
}) async {
return handleWebMethodCall(MethodCall('group', {
'groupType': groupType,
'groupKey': groupKey,
if (groupProperties != null) 'groupProperties': groupProperties,
}));
}