Message constructor

Message(
  1. String cmd,
  2. int to,
  3. dynamic result,
  4. int id,
)

Implementation

Message(
  this.cmd,
  this.to,
  this.result,
  this.id,
);