JobFlowExecutionStatusDetail constructor

JobFlowExecutionStatusDetail({
  1. required DateTime creationDateTime,
  2. required JobFlowExecutionState state,
  3. DateTime? endDateTime,
  4. String? lastStateChangeReason,
  5. DateTime? readyDateTime,
  6. DateTime? startDateTime,
})

Implementation

JobFlowExecutionStatusDetail({
  required this.creationDateTime,
  required this.state,
  this.endDateTime,
  this.lastStateChangeReason,
  this.readyDateTime,
  this.startDateTime,
});