ManagedCertificateAuthority.fromJson constructor

ManagedCertificateAuthority.fromJson(
  1. Map json_
)

Implementation

ManagedCertificateAuthority.fromJson(core.Map json_)
    : this(
        caCerts: (json_['caCerts'] as core.List?)
            ?.map((value) => CertChain.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );