destroy static method

Future<void> destroy(
  1. int adType
)

Destroy adType advertising

Support only BANNER and MREC

Implementation

static Future<void> destroy(int adType) async {
  if (Platform.isAndroid) {
    return _channel.invokeMethod('destroy', {'adType': adType});
  }
}