From d554d09c64b9666b9756bff85aa4e7b3fa380a9c Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Tue, 9 Jul 2024 08:46:20 +0200 Subject: [PATCH] fixup! Implement ExposedThing functionality --- lib/src/core/implementation/exposed_thing.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(); }