diff --git a/lib/src/core/implementation/exposed_thing.dart b/lib/src/core/implementation/exposed_thing.dart index a5eca694..432792d5 100644 --- a/lib/src/core/implementation/exposed_thing.dart +++ b/lib/src/core/implementation/exposed_thing.dart @@ -289,11 +289,13 @@ class ExposedThing implements scripting_api.ExposedThing, ExposableThing { @override Stream handleObserveProperty( - String eventName, { + String propertyName, { int? formIndex, Map? uriVariables, Object? data, }) { + final property = _obtainProperty(propertyName); + // TODO: implement handleObserveProperty throw UnimplementedError(); }