RegisterCertificateResponse.fromJson constructor

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

Implementation

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