show method

Future<bool> show()

Shows the ad if ad is ready.

Implementation

// Returns 'true' if showing ad was successful, 'false' otherwise.
Future<bool> show() async {
  try {
    return AatkitFlutterPluginPlatform.instance.showRewarded(name);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
    return false;
  }
}