dispose method

  1. @override
void dispose()
override

Implementations of this method should end with a call to the inherited method, as in super.dispose().

Implementation

@override
void dispose() {
  _fairApp?.unregister(this);
  delegate.dispose();
  super.dispose();
}