LogListView constructor

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

Implementation

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