CertificateAuthorityServiceConfig.fromJson constructor

CertificateAuthorityServiceConfig.fromJson(
  1. Map json_
)

Implementation

CertificateAuthorityServiceConfig.fromJson(core.Map json_)
    : this(
        caPool: json_.containsKey('caPool')
            ? json_['caPool'] as core.String
            : null,
      );