LogListView constructor

const LogListView({
  1. required List<DevLogModel> logs,
  2. List<int>? highlightIndices,
  3. int? highlightIndex,
  4. VoidCallback? onCopy,
  5. ScrollController? scrollController,
  6. Key? key,
})

Implementation

const LogListView({
  required this.logs,
  this.highlightIndices,
  this.highlightIndex,
  this.onCopy,
  this.scrollController,
  super.key,
});