ActionInfo constructor

ActionInfo({
  1. String? uniqueId,
  2. String? actionType,
  3. int? timeStamp,
  4. dynamic payload,
  5. dynamic prevState,
  6. dynamic nextState,
})

Implementation

ActionInfo({
  this.uniqueId,
  this.actionType,
  this.timeStamp,
  this.payload,
  this.prevState,
  this.nextState,
});