setAdvertiserTracking method

Future<bool> setAdvertiserTracking({
  1. required bool isEnabled,
})

Only Available in iOS Set the advertiser tracking to true or false App events won't work if this is disabled

Implementation

Future<bool> setAdvertiserTracking({required bool isEnabled}) async {
  final bool result = await _channel
      .invokeMethod("setAdvertiserTracking", {"enabled": isEnabled});
  return result;
}