setAttributionReportingLocalTestingMode method

Future<void> setAttributionReportingLocalTestingMode(
  1. bool enabled
)

https://wicg.github.io/attribution-reporting-api/ enabled If enabled, noise is suppressed and reports are sent immediately.

Implementation

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