configureDebugScreen method

Future<void> configureDebugScreen(
  1. DebugScreenConfiguration configuration
)

Implementation

Future<void> configureDebugScreen(
    DebugScreenConfiguration configuration) async {
  try {
    return await AatkitFlutterPluginPlatform.instance
        .configureDebugScreen(configuration);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}