Message constructor

Message({
  1. String? newJobState,
  2. String? newTaskState,
  3. String? type,
})

Implementation

Message({
  this.newJobState,
  this.newTaskState,
  this.type,
});