CertificateAuthorityConfig.fromJson constructor
CertificateAuthorityConfig.fromJson(
- 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,
);