Action constructor

Action({
  1. Actor? actor,
  2. ActionDetail? detail,
  3. Target? target,
  4. TimeRange? timeRange,
  5. String? timestamp,
})

Implementation

Action({
  this.actor,
  this.detail,
  this.target,
  this.timeRange,
  this.timestamp,
});