Properties constructor

Properties({
  1. bool? broadcast = false,
  2. bool? read = false,
  3. bool? writeWithoutResponse = false,
  4. bool? write = false,
  5. bool? notify = false,
  6. bool? indicate = false,
  7. bool? authenticatedSignedWrites = false,
  8. bool? reliableWrite = false,
  9. bool? writableAuxiliaries = false,
})

Implementation

Properties({
  this.broadcast = false,
  this.read = false,
  this.writeWithoutResponse = false,
  this.write = false,
  this.notify = false,
  this.indicate = false,
  this.authenticatedSignedWrites = false,
  this.reliableWrite = false,
  this.writableAuxiliaries = false,
});