limitAdTrackingEnabled property

Future<bool?> get limitAdTrackingEnabled

Checks whether the "Limit Ad Tracking" setting is enabled on the device.

Returns a Future that resolves to a bool? indicating the status:

  • true: Limit Ad Tracking is enabled.
  • false: Limit Ad Tracking is disabled.
  • null: Unable to determine the status.

Implementation

Future<bool?> get limitAdTrackingEnabled async {
  return await FlutterAdvertisingIdPlatform.instance.limitAdTrackingEnabled;
}