notifyDispose method

  1. @mustCallSuper
void notifyDispose()

Notify listeners with dispose of this object.

Implementation

@mustCallSuper
void notifyDispose() {

	for (var action in onDispose) {
		action(this);
	}
	onDispose.clear();

}