reload method

Future<bool> reload()

Requests placement reload. Works only if automatic reloading is disabled.

Returns 'true' if call ends in causing a placement to reload, 'false' otherwise.

Implementation

Future<bool> reload() async {
  try {
    return AatkitFlutterPluginPlatform.instance.reloadAppOpenAd(name);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
    return false;
  }
}