dispose method

void dispose()
inherited

Dispose (call in unmount react control) Вызвать при удалении контрола

Implementation

void dispose() {
  super.dispose();
  this._reactionOnIsActiveDisposer();
  for (final control in this.getControls()) {
    control.dispose();
  }
}