show method

void show()

Implementation

void show() async {
  if (await isReady == false) {
    print("ADInterstitial '" +
        adUnitId +
        "' currently unavailable, call preload() first.");
    return;
  }
  await _channel.invokeMethod('show', _channelID);
}