DeleteCertificateResponse.fromJson constructor

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

Implementation

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