Run constructor

Run({
  1. String? id,
  2. String? taskID,
  3. RunStatusEnum? status,
  4. DateTime? scheduledFor,
  5. List<LogEvent>? log = const [],
  6. DateTime? startedAt,
  7. DateTime? finishedAt,
  8. DateTime? requestedAt,
  9. RunLinks? links,
})

Returns a new Run instance.

Implementation

Run({
  this.id,
  this.taskID,
  this.status,
  this.scheduledFor,
  this.log = const [],
  this.startedAt,
  this.finishedAt,
  this.requestedAt,
  this.links,
});