properties property
WebBluetoothCharacteristicProperties
get
properties
Get the properties of the characteristic.
The properties tell you what the characteristic is and isn't able to do.
See:
Implementation
WebBluetoothCharacteristicProperties get properties {
final properties = _properties;
if (properties != null) {
return properties;
}
final newProperties = _JSUtil.getProperty(_jsObject, "properties");
_properties =
WebBluetoothCharacteristicProperties.fromJSObject(newProperties);
return _properties!;
}