clearLocalNotifications method

Future clearLocalNotifications()
override

Implementation

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