CtrlMessage constructor

CtrlMessage({
  1. String? id,
  2. String? topic,
  3. int? code,
  4. String? text,
  5. DateTime? ts,
  6. dynamic params,
})

Implementation

CtrlMessage({
  this.id,
  this.topic,
  this.code,
  this.text,
  this.ts,
  this.params,
});