setWebContentsDebuggingEnabled static method

  1. @Deprecated("Use InAppWebViewController.setWebContentsDebuggingEnabled instead")
Future<void> setWebContentsDebuggingEnabled(
  1. bool debuggingEnabled
)

Use InAppWebViewController.setWebContentsDebuggingEnabled instead.

Implementation

@Deprecated(
  "Use InAppWebViewController.setWebContentsDebuggingEnabled instead",
)
static Future<void> setWebContentsDebuggingEnabled(
  bool debuggingEnabled,
) async {
  return await InAppWebViewController.setWebContentsDebuggingEnabled(
    debuggingEnabled,
  );
}