SslCertDetail.fromJson constructor

SslCertDetail.fromJson(
  1. Map json_
)

Implementation

SslCertDetail.fromJson(core.Map json_)
    : this(
        certInfo: json_.containsKey('certInfo')
            ? SslCert.fromJson(
                json_['certInfo'] as core.Map<core.String, core.dynamic>)
            : null,
        certPrivateKey: json_.containsKey('certPrivateKey')
            ? json_['certPrivateKey'] as core.String
            : null,
      );