ObservableUpdateEvent constructor
ObservableUpdateEvent(
- String label,
- Object? oldValue,
- Object? newValue, {
- StackTrace? stackTrace,
Creates an update-event for label going from oldValue to
newValue.
Cria um evento de atualização para label indo de oldValue para
newValue.
Implementation
ObservableUpdateEvent(
super.label,
this.oldValue,
this.newValue, {
super.stackTrace,
});