DescribeJobFlowsOutput.fromJson constructor
Implementation
factory DescribeJobFlowsOutput.fromJson(Map<String, dynamic> json) {
return DescribeJobFlowsOutput(
jobFlows: (json['JobFlows'] as List?)
?.whereNotNull()
.map((e) => JobFlowDetail.fromJson(e as Map<String, dynamic>))
.toList(),
);
}