ImportCertificateResponse.fromJson constructor

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

Implementation

factory ImportCertificateResponse.fromJson(Map<String, dynamic> json) {
  return ImportCertificateResponse(
    certificateArn: json['CertificateArn'] as String?,
  );
}