VerticalLogPanel constructor

const VerticalLogPanel({
  1. Key? key,
  2. bool showLogPanel = true,
  3. VerticalLogPanelBuilder? logPanelBuilder = VerticalLogPanel.defaultLogBuilder,
  4. double? minHeight,
  5. Widget? child,
  6. bool mergeDuplicateLogs = true,
})

Implementation

const VerticalLogPanel({
  Key? key,
  this.showLogPanel = true,
  this.logPanelBuilder = VerticalLogPanel.defaultLogBuilder,
  this.minHeight,
  this.child,
  this.mergeDuplicateLogs = true,
}) : super(key: key);