getGlobalLogEmitter function

ValueNotifier<LogInfo?> getGlobalLogEmitter()

Implementation

ValueNotifier<LogInfo?> getGlobalLogEmitter() {
  _logEmitter ??= ValueNotifier<LogInfo?>(null);
  return _logEmitter!;
}