Message<T> constructor

Message<T>(
  1. String? subject,
  2. int sid,
  3. Uint8List byte,
  4. Client _client, {
  5. String? replyTo,
  6. T jsonDecoder(
    1. String
    )?,
  7. Header? header,
})

constructor

Implementation

Message(this.subject, this.sid, this.byte, this._client,
    {this.replyTo, this.jsonDecoder, this.header});