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