createFullscreenPlacement method

Future<void> createFullscreenPlacement()

Creates fullscreen placement.

Implementation

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