removeCallback method

  1. @override
void removeCallback(
  1. ViewModelInstanceObservableValue instance
)

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);
}