clearLocalNotifications method
Implementation
Future clearLocalNotifications() async {
if (Platform.isIOS) {
return;
}
print(flutter_log + "clearLocalNotifications:");
await _channel.invokeMethod('clearLocalNotifications');
}
Future clearLocalNotifications() async {
if (Platform.isIOS) {
return;
}
print(flutter_log + "clearLocalNotifications:");
await _channel.invokeMethod('clearLocalNotifications');
}