removeCallback method
This method is used internally to remove a property instance from the list of properties that have listeners attached to them.
This method should not be called directly, but rather through the
removeListener method of the ViewModelInstanceObservableValue.
Implementation
@override
void removeCallback(ViewModelInstanceObservableValue instance) {
_propertiesWithCallbacks.remove(instance);
}