SetAdid method

  1. @override
Future<void> SetAdid(
  1. String adid
)
override

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}'.");
  }
}