dispose method
Base method for instance dispose
After you call this method set isInitialized flag to false
Implementation
@mustCallSuper
@override
void dispose() {
super.dispose();
disposeStore();
disposeDependencies();
cancelAllRequests();
cancelPendingOperations();
}