removeLogListener static method

bool removeLogListener(
  1. LogCallback callback
)

Removes a LogCallback which was previously registered.

Returns whether the callback was successfully removed.

Implementation

static bool removeLogListener(LogCallback callback) {
  return _logCallbacks.remove(callback);
}