UNTRUSTED property

SslErrorType UNTRUSTED
final

The certificate authority is not trusted.

Officially Supported Platforms/Implementations:

Implementation

static final UNTRUSTED = SslErrorType._internalMultiPlatform('UNTRUSTED', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 3;
    default:
      break;
  }
  return null;
});