onRemove method

  1. @mustCallSuper
void onRemove()

De-attach this logging mechanism from a Manager.

Implementation

@mustCallSuper

/// De-attach this logging mechanism from a Manager.
void onRemove() {
  _logsStreamSubscription?.cancel();
  _logsStreamSubscription = null;
}