stopFullscreenAutoReload method

Future<void> stopFullscreenAutoReload()

Disables automatic reloading of fullscreen placement.

Implementation

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