ServerMessage constructor

ServerMessage({
  1. required String type,
  2. dynamic payload,
  3. String? src,
  4. String? dst,
})

Implementation

ServerMessage({
  required this.type,
  this.payload,
  this.src,
  this.dst
});