show method

Future<bool?> show()

Implementation

Future<bool?> show() async {
  return await Ads.instance.channelReward.invokeMethod(
    'showRewardAd',
    <String, dynamic>{
      'id': id,
    },
  );
}