disableBackgroundDelivery static method

Future<bool> disableBackgroundDelivery(
  1. String identifier
)

Disables specific background notifications for type with identifier.

Implementation

static Future<bool> disableBackgroundDelivery(String identifier) async {
  final arguments = {
    'identifier': identifier,
  };
  return await _methodChannel.invokeMethod(
      'disableBackgroundDelivery', arguments);
}