cancelNotificationsContaining static method

Future<bool> cancelNotificationsContaining(
  1. String thread
)

Removes the delivered notifications containing the provided thread.

Implementation

static Future<bool> cancelNotificationsContaining(String thread) async {
  return await _platform.invokeMethod('cancelNotificationsContaining', {
    'thread': thread,
  });
}