Options constructor

const Options({
  1. bool force = false,
  2. bool cloneData = false,
  3. bool expectResponse = false,
  4. int? ackTimeout,
  5. bool noTimeout = false,
})

Implementation

const Options({
  this.force = false,
  this.cloneData = false,
  this.expectResponse = false,
  this.ackTimeout,
  this.noTimeout = false,
});