setInterestGroupAuctionTracking method

Future<void> setInterestGroupAuctionTracking(
  1. bool enable
)

Enables/Disables issuing of interestGroupAuctionEventOccurred and interestGroupAuctionNetworkRequestCreated.

Implementation

Future<void> setInterestGroupAuctionTracking(bool enable) async {
  await _client.send('Storage.setInterestGroupAuctionTracking', {
    'enable': enable,
  });
}