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,
      );