DeleteClusterResponse.fromJson constructor

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

Implementation

factory DeleteClusterResponse.fromJson(Map<String, dynamic> json) {
  return DeleteClusterResponse(
    clusterArn: json['clusterArn'] as String?,
    state: (json['state'] as String?)?.toClusterState(),
  );
}