setAdIdEnabled method
- bool adIdEnabled
Implementation
static Future setAdIdEnabled(bool adIdEnabled) async {
try {
await _channel
.invokeMethod('setAdIdEnabled', {"AdIdEnabled": adIdEnabled});
} on PlatformException catch (e) {
print("Got error: $e");
}
}