eventEnd method

Future<bool> eventEnd({
  1. required String eventId,
  2. String label = '',
  3. Map<String, String>? attributes,
})

记录一次事件的结束。

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

Implementation

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