BleCharacteristicProperties constructor

const BleCharacteristicProperties({
  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 extendedProperties = false,
})

Implementation

const BleCharacteristicProperties({
  this.broadcast = false,
  this.read = false,
  this.writeWithoutResponse = false,
  this.write = false,
  this.notify = false,
  this.indicate = false,
  this.authenticatedSignedWrites = false,
  this.extendedProperties = false,
});