disableDebugScreen method
Disables the debug screen appearing after shaking the device. It is enabled by default.
Implementation
Future<void> disableDebugScreen() async {
try {
await AatkitFlutterPluginPlatform.instance.disableDebugScreen();
} on PlatformException catch (e) {
aatkitLog("PlatformException, error: $e");
}
}