withDataSaleOptOut method

Builder withDataSaleOptOut([
  1. bool isOptOut = false
])

Sends CCPA compliance data to Flurry.

Sends CCPA compliance data to Flurry on the user's choice to opt out or opt in to data sale to third parties. By default, isOptOut is set to false.

Implementation

Builder withDataSaleOptOut([bool isOptOut = false]) {
  builderAgent?.withDataSaleOptOut(isOptOut);
  return this;
}