clear static method

Future<bool> clear(
  1. List<String> ids
)

Deletes data from SharedPreferences for the notification whose IDs are passed as an argument.

Implementation

static Future<bool> clear(List<String> ids) {
  return LongTimeNoNotificationDelegate.clear(ids, _repository);
}