ReplayEventHistoryBrowser.interactive constructor

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

Implementation

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