CharacteristicProperties constructor

CharacteristicProperties({
  1. bool? broadcast,
  2. bool? read,
  3. bool? writeWithoutResponse,
  4. bool? write,
  5. bool? notify,
  6. bool? indicate,
  7. bool? authenticatedSignedWrites,
  8. bool? extendedProperties,
})

Implementation

CharacteristicProperties({
  this.broadcast,
  this.read,
  this.writeWithoutResponse,
  this.write,
  this.notify,
  this.indicate,
  this.authenticatedSignedWrites,
  this.extendedProperties,
});