CertificateAuthorityConfig.fromJson constructor

CertificateAuthorityConfig.fromJson(
  1. Map json_
)

Implementation

CertificateAuthorityConfig.fromJson(core.Map json_)
    : this(
        certificateAuthorityServiceConfig:
            json_.containsKey('certificateAuthorityServiceConfig')
                ? CertificateAuthorityServiceConfig.fromJson(
                    json_['certificateAuthorityServiceConfig']
                        as core.Map<core.String, core.dynamic>)
                : null,
      );