PROCEED property

HttpAuthResponseAction PROCEED
final

Instructs the WebView to proceed with the authentication with the given credentials.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView
  • Windows WebView2

Implementation

static final PROCEED = HttpAuthResponseAction._internalMultiPlatform(1, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 1;
    case TargetPlatform.iOS:
      return 1;
    case TargetPlatform.macOS:
      return 1;
    case TargetPlatform.windows:
      return 1;
    default:
      break;
  }
  return null;
});