dispose method

void dispose()

Dispose the manager and its controller.

Implementation

void dispose() {
  _controller.removeListener(_onControllerChanged);
  _entry?.remove();
  _entry?.dispose();
  _entry = null;
  _controller.dispose();
}