GithubActionsStepValue constructor

const GithubActionsStepValue({
  1. int? number,
  2. String? name,
  3. String? status,
  4. String? conclusion,
  5. ModelTimestamp? startedAt,
  6. ModelTimestamp? completedAt,
})

Value for representing each step executed within a Github Action job.

Implementation

const factory GithubActionsStepValue({
  int? number,
  String? name,
  String? status,
  String? conclusion,
  ModelTimestamp? startedAt,
  ModelTimestamp? completedAt,
}) = _GithubActionsStepValue;