Reputation: 3222
Does dart support es6 Proxy? I couldnt find the information in the official documentation. Even searching in google didnt give me any results.
The reason im asking:
Im trying to detect when a certain property changes. Similar to C# INotifyPropertyChanged.
https://msdn.microsoft.com/en-us/library/system.componentmodel.inotifypropertychanged(v=vs.110).aspx
Upvotes: 0
Views: 179
Reputation: 6171
The short answer: not directly.
As Gunter mentioned, the observable package can be used to accomplish things that look like INotifyPropertyChanged from .NET.
Upvotes: 2