removeAllBucketNotification method

Future<void> removeAllBucketNotification(
  1. String bucket
)

Remove all bucket notification

Implementation

Future<void> removeAllBucketNotification(String bucket) async {
  await setBucketNotification(
    bucket,
    NotificationConfiguration(null, null, null),
  );
}