StageExecution.fromJson constructor

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

Implementation

factory StageExecution.fromJson(Map<String, dynamic> json) {
  return StageExecution(
    pipelineExecutionId: json['pipelineExecutionId'] as String,
    status: (json['status'] as String).toStageExecutionStatus(),
  );
}