Skip to content

Commit d554d09

Browse files
committed
fixup! Implement ExposedThing functionality
1 parent b4f2384 commit d554d09

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/src/core/implementation/exposed_thing.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,11 +289,13 @@ class ExposedThing implements scripting_api.ExposedThing, ExposableThing {
289289

290290
@override
291291
Stream<Content> handleObserveProperty(
292-
String eventName, {
292+
String propertyName, {
293293
int? formIndex,
294294
Map<String, Object>? uriVariables,
295295
Object? data,
296296
}) {
297+
final property = _obtainProperty(propertyName);
298+
297299
// TODO: implement handleObserveProperty
298300
throw UnimplementedError();
299301
}

0 commit comments

Comments
 (0)