Skip to content

Instantly share code, notes, and snippets.

@xxgreg
Last active August 29, 2015 13:57
Show Gist options
  • Save xxgreg/9863962 to your computer and use it in GitHub Desktop.
Save xxgreg/9863962 to your computer and use it in GitHub Desktop.
import 'package:observe/observe.dart';
class ObsTest extends Observable {
@observable int x;
void xChanged(c) {
print('xChanged: $c');
}
}
main() {
var obs = new ObsTest();
obs.x = 42; // xChanged not called.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment