BmCharacteristicProperties constructor

BmCharacteristicProperties({
  1. required bool broadcast,
  2. required bool read,
  3. required bool writeWithoutResponse,
  4. required bool write,
  5. required bool notify,
  6. required bool indicate,
  7. required bool authenticatedSignedWrites,
  8. required bool extendedProperties,
  9. required bool notifyEncryptionRequired,
  10. required bool indicateEncryptionRequired,
})

Implementation

BmCharacteristicProperties({
  required this.broadcast,
  required this.read,
  required this.writeWithoutResponse,
  required this.write,
  required this.notify,
  required this.indicate,
  required this.authenticatedSignedWrites,
  required this.extendedProperties,
  required this.notifyEncryptionRequired,
  required this.indicateEncryptionRequired,
});