DescribeJobFlowsOutput.fromJson constructor

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

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(),
  );
}