ActionState constructor

ActionState({
  1. String? actionName,
  2. ActionRevision? currentRevision,
  3. String? entityUrl,
  4. ActionExecution? latestExecution,
  5. String? revisionUrl,
})

Implementation

ActionState({
  this.actionName,
  this.currentRevision,
  this.entityUrl,
  this.latestExecution,
  this.revisionUrl,
});