SECURE_CONNECTION_FAILED property

WebResourceErrorType SECURE_CONNECTION_FAILED
final

An attempt to establish a secure connection failed for reasons that can’t be expressed more specifically.

Officially Supported Platforms/Implementations:

Implementation

static final SECURE_CONNECTION_FAILED =
    WebResourceErrorType._internalMultiPlatform('SECURE_CONNECTION_FAILED',
        () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.iOS:
      return -1200;
    case TargetPlatform.macOS:
      return -1200;
    default:
      break;
  }
  return null;
});