EXPIRED property

SslErrorType EXPIRED
final

The certificate has expired.

Officially Supported Platforms/Implementations:

Implementation

static final EXPIRED = SslErrorType._internalMultiPlatform('EXPIRED', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 1;
    case TargetPlatform.windows:
      return 2;
    default:
      break;
  }
  return null;
});