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