getBackgroundDeliveryConfig method

Future<BackgroundDeliveryConfig?> getBackgroundDeliveryConfig()

Implementation

Future<BackgroundDeliveryConfig?> getBackgroundDeliveryConfig() async {
  final result = await NativeSDKBridgeV3.getBackgroundDeliveryConfig(
    connectionId: connectionId,
  );

  ExceptionHandler.checkException(result);

  final object = result != null ? BackgroundDeliveryConfig.fromJson(result) : null;
  return object;
}