DescribeDataSetResponse.fromJson constructor

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

Implementation

factory DescribeDataSetResponse.fromJson(Map<String, dynamic> json) {
  return DescribeDataSetResponse(
    dataSet: json['DataSet'] != null
        ? DataSet.fromJson(json['DataSet'] as Map<String, dynamic>)
        : null,
    requestId: json['RequestId'] as String?,
  );
}