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