disposeMe static method

Future<void> disposeMe()

Used to configure the logging and analytic abilities of the Loglytics.

Implementation

static Future<void> disposeMe() async {
  _analyticsInterface = null;
  _crashReportsInterface = null;
  _maxLinesStackTrace = null;
  await resetAnalytics();
  await _eventBus.dispose();
  _isActive = false;
}