ActionExecution constructor

ActionExecution({
  1. String? actionExecutionId,
  2. ErrorDetails? errorDetails,
  3. String? externalExecutionId,
  4. String? externalExecutionUrl,
  5. DateTime? lastStatusChange,
  6. String? lastUpdatedBy,
  7. int? percentComplete,
  8. ActionExecutionStatus? status,
  9. String? summary,
  10. String? token,
})

Implementation

ActionExecution({
  this.actionExecutionId,
  this.errorDetails,
  this.externalExecutionId,
  this.externalExecutionUrl,
  this.lastStatusChange,
  this.lastUpdatedBy,
  this.percentComplete,
  this.status,
  this.summary,
  this.token,
});