Closed jakemac53 closed 9 years ago
This happens in you have a property with a default value of null. We can't pass a value of undefined to JS, so its actually seeing a change from undefined => null. However dart converts those both to null when it calls the event handler.
null
undefined
blocked on https://github.com/dart-lang/sdk/issues/24088
actually I just did an internal implementation of this to handle this use case specifically.
This happens in you have a property with a default value of
null
. We can't pass a value ofundefined
to JS, so its actually seeing a change fromundefined
=>null
. However dart converts those both tonull
when it calls the event handler.