You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Changes on ObservableMap and ObservableList objects created via cast or castFrom mutate the original collections but do not trigger notifications on the original collections.
final original =ObservableList<int>.from([1, 2, 3]);
original.changes.listen(print); // Listener never triggered.final cast = original.cast<num>();
cast.add(4);
print(original); // Prints [1, 2, 3, 4].awaitFuture(() {}); // Flush any microtasks.