changeAutoRequesting method

Future<bool> changeAutoRequesting(
  1. bool autoRequestingEnabled
)
inherited

Changes auto-requesting behavior for this placementId.

Returnes Future that resolves to autoRequestingEnabled value when operation succeeds.

Implementation

Future<bool> changeAutoRequesting(bool autoRequestingEnabled) =>
    _sdk._changeAutoRequesting(_type, placementId, autoRequestingEnabled)
        as Future<bool>;