logEvent method

Future<bool> logEvent({
  1. required String eventId,
  2. Map<String, String>? attributes,
})

记录一次事件的点击。

eventId 自定义事件ID,请提前在网站上创建,未创建的evenId记录将无效。 attributes 事件属性,对应的key需要在网站上创建,未创建的key记录将无效。

Implementation

Future<bool> logEvent(
    {required String eventId, Map<String, String>? attributes}) async {
  if (!_supportPlatform) return false;
  final bool? state = await _channel.invokeMethod<bool?>('logEvent',
      <String, dynamic>{'eventId': eventId, 'attributes': attributes});
  return state ?? false;
}