show method

Future<bool> show()

Show an ad.

Implementation

Future<bool> show() {
  return _channel.invokeMethod('showRewardedVideoAd', {
    'id': _id,
  }).then((value) {
    return value is bool && value;
  });
}