ReplayEventHistoryBrowser constructor

ReplayEventHistoryBrowser({
  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. bool showFilterChips = true,
  8. bool showModeChips = true,
  9. bool showExpandToggle = true,
  10. bool showFilterSummary = true,
  11. bool showModeSummary = true,
  12. Key? key,
})

Implementation

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