TransferCertificateResponse.fromJson constructor

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

Implementation

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