clearNotification method

void clearNotification({
  1. int notificationId = 0,
})

清空通知栏上某个通知 @param notificationId 通知 id,即:LocalNotification id

Implementation

void clearNotification({int notificationId = 0}) {
  print(flutter_log + "clearNotification:");
  _channel.invokeListMethod("clearNotification", notificationId);
}