show method

Future<void> show()
inherited

Requests to show an ad from Adrop using the Ad unit ID of the Adrop ad.

Implementation

Future<void> show() async {
  return await _invokeChannel.invokeMethod(
      AdropMethod.showAd, {"adType": _adType.index, "requestId": _requestId});
}