onPlant method

  1. @mustCallSuper
void onPlant(
  1. StreamSubscription<LogRecord>? subscription
)

Attach this logging mechanism to a Manager.

Implementation

@mustCallSuper

/// Attach this logging mechanism to a Manager.
void onPlant(StreamSubscription<LogRecord>? subscription) {
  _logsStreamSubscription = subscription;
}