ReplayEventHistoryBrowser.renderCaptures constructor

ReplayEventHistoryBrowser.renderCaptures({
  1. required List<ReplayEventPresentation> events,
  2. required ReplayEventHistoryState state,
  3. required ValueCmdCallback<ReplayEventHistoryState>? onStateChanged,
  4. String title = 'Replay History',
  5. int maxItems = 3,
  6. bool showTypeChips = true,
  7. Key? key,
})

Implementation

ReplayEventHistoryBrowser.renderCaptures({
  required this.events,
  required this.state,
  required this.onStateChanged,
  this.title = 'Replay History',
  this.maxItems = 3,
  this.showTypeChips = true,
  super.key,
}) : showFilterChips = false,
     showModeChips = true,
     showExpandToggle = true,
     showFilterSummary = false,
     showModeSummary = true;