DescribeCertificateAuthorityResponse.fromJson constructor

DescribeCertificateAuthorityResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DescribeCertificateAuthorityResponse.fromJson(
    Map<String, dynamic> json) {
  return DescribeCertificateAuthorityResponse(
    certificateAuthority: json['CertificateAuthority'] != null
        ? CertificateAuthority.fromJson(
            json['CertificateAuthority'] as Map<String, dynamic>)
        : null,
  );
}