setAdvertiserIDCollectionEnabled method

Future<void> setAdvertiserIDCollectionEnabled({
  1. required bool isEnabled,
})
override

Implementation

Future<void> setAdvertiserIDCollectionEnabled(
    {required bool isEnabled}) async {
  await methodChannel.invokeMethod(
    "setAdvertiserIDCollectionEnabled",
    {
      "isEnabled": isEnabled,
    },
  );
}