stop method

void stop()

Stops the API logger, removes observers, and clears data.

Implementation

void stop() {
  WidgetsBinding.instance.removeObserver(_instance);
  _setEnable(false);
  _cancelShake();
  clear();
}