propertiesChanged property

Stream<List<String>> propertiesChanged

Stream of property names as their values change.

Implementation

Stream<List<String>> get propertiesChanged =>
    _object.interfaces[_deviceInterfaceName]
        ?.propertiesChangedStreamController.stream ??
    Stream<List<String>>.empty();