ExportCertificateResponse.fromJson constructor

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

Implementation

factory ExportCertificateResponse.fromJson(Map<String, dynamic> json) {
  return ExportCertificateResponse(
    certificate: json['Certificate'] as String?,
    certificateChain: json['CertificateChain'] as String?,
    privateKey: json['PrivateKey'] as String?,
  );
}