DataMessage constructor

DataMessage({
  1. String? topic,
  2. String? from,
  3. Map<String, dynamic>? head,
  4. DateTime? ts,
  5. int? seq,
  6. dynamic content,
  7. bool? noForwarding,
  8. int? hi,
})

Implementation

DataMessage({
  this.topic,
  this.from,
  this.head,
  this.ts,
  this.seq,
  this.content,
  this.noForwarding,
  this.hi,
});