InfoMessage constructor

InfoMessage({
  1. String? topic,
  2. String? from,
  3. String? what,
  4. int? seq,
})

Implementation

InfoMessage({
  this.topic,
  this.from,
  this.what,
  this.seq,
});