disableBackgroundDelivery static method

Future<bool> disableBackgroundDelivery({
  1. required String connectionId,
})

Implementation

static Future<bool> disableBackgroundDelivery({
  required String connectionId,
}) async {
  final result = await _channel.invokeMethod('disableBackgroundDelivery', {
    'connectionId': connectionId,
  });

  ExceptionHandler.checkException(result);
  return result == true;
}