clearAllNotification static method

Future<String?> clearAllNotification(
  1. String type
)

清楚推送所有通知

Implementation

static Future<String?> clearAllNotification(String type) async {
  return await channel.invokeMethod(Config.methodClearAllNotification,{"type":type,});
}