SetAdid method
Implementation
@override
Future<void> SetAdid(String adid) async {
try {
await methodChannel.invokeMethod('SetAdid', {'adid': adid});
} on PlatformException catch (e) {
print("Failed to call SetAdid: '${e.message}'.");
}
}