disableBackgroundDelivery method

Future<bool> disableBackgroundDelivery()

Implementation

Future<bool> disableBackgroundDelivery() async {
  final result = await NativeSDKBridgeV3.disableBackgroundDelivery(
    connectionId: connectionId,
  );

  ExceptionHandler.checkException(result);

  return true;
}