disableBackgroundDelivery method
Implementation
Future<bool> disableBackgroundDelivery() async {
final result = await NativeSDKBridgeV3.disableBackgroundDelivery(
connectionId: connectionId,
);
ExceptionHandler.checkException(result);
return true;
}