ListPipelineExecutionStepsResponse.fromJson constructor

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

Implementation

factory ListPipelineExecutionStepsResponse.fromJson(
    Map<String, dynamic> json) {
  return ListPipelineExecutionStepsResponse(
    nextToken: json['NextToken'] as String?,
    pipelineExecutionSteps: (json['PipelineExecutionSteps'] as List?)
        ?.whereNotNull()
        .map((e) => PipelineExecutionStep.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}