PubPacketData constructor

PubPacketData({
  1. String? topic,
  2. bool? noecho,
  3. dynamic head,
  4. dynamic content,
  5. int? seq,
  6. String? from,
  7. DateTime? ts,
})

Implementation

PubPacketData(
    {this.topic,
    this.noecho,
    this.head,
    this.content,
    this.seq,
    this.from,
    this.ts});