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