dispose method

  1. @override
void dispose()
override

Should be called to clean all links to other Valuables, and all the rest

Implementation

@override
void dispose() {
  super.dispose();
  _callback.dispose();
  _subscription?.cancel(); // Cancel subscription to free memory
}