dispose method

void dispose()

Dispose the App properties.

Implementation

void dispose() {
  _connectivitySubscription?.cancel();
  _connectivitySubscription = null;
  // Restore the original error handling.
  _errorHandler!.dispose();
}