LogListenerScope constructor

const LogListenerScope({
  1. Key? key,
  2. bool showLogPanel = false,
  3. required ValueNotifier<LogInfo?> logEmitter,
  4. required Widget child,
  5. LogPanelBuilder? logPanelBuilder,
})

Implementation

const LogListenerScope({
  Key? key,
  this.showLogPanel = false,
  required this.logEmitter,
  required this.child,
  this.logPanelBuilder,
}) : super(key: key);