reportNotificationDeletedAndroid static method

dynamic reportNotificationDeletedAndroid(
  1. dynamic messageId,
  2. dynamic platform,
  3. dynamic platformMessageId
)

上报厂商通道通知删除

走http/https上报

@param context 不为空 @param messageId Engagelab消息id,不为空 @param platform 厂商,取值范围(1:mi、2:huawei、3:meizu、4:oppo、5:vivo、8:google) @param platformMessageId 厂商消息id,可为空

Implementation

static reportNotificationDeletedAndroid(
    messageId, platform, platformMessageId) {
  printMy("reportNotificationDeleted");
  _channel.invokeMethod(
      "reportNotificationDeleted", [messageId, platform, platformMessageId]);
}