stopAutoReload method

Future<void> stopAutoReload()

Stop the automatic reloading of the placement.

Implementation

Future<void> stopAutoReload() async {
  try {
    return AatkitFlutterPluginPlatform.instance
        .stopFullscreenAutoReload(name);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}