ReplayEventHistoryPanel constructor

ReplayEventHistoryPanel({
  1. required List<ReplayEventPresentation> events,
  2. String title = 'Replay History',
  3. int maxItems = 5,
  4. ReplayEventHistoryFilter filter = ReplayEventHistoryFilter.all,
  5. ReplayEventHistoryMode mode = ReplayEventHistoryMode.flat,
  6. bool expanded = false,
  7. bool showTypeChips = false,
  8. bool showFilterChips = false,
  9. bool showModeChips = false,
  10. bool showExpandToggle = false,
  11. bool showFilterSummary = true,
  12. bool showModeSummary = true,
  13. ValueCmdCallback<ReplayEventHistoryFilter>? onFilterSelected,
  14. ValueCmdCallback<ReplayEventHistoryMode>? onModeSelected,
  15. ValueCmdCallback<bool>? onExpandedChanged,
  16. Key? key,
})

Implementation

ReplayEventHistoryPanel({
  required this.events,
  this.title = 'Replay History',
  this.maxItems = 5,
  this.filter = ReplayEventHistoryFilter.all,
  this.mode = ReplayEventHistoryMode.flat,
  this.expanded = false,
  this.showTypeChips = false,
  this.showFilterChips = false,
  this.showModeChips = false,
  this.showExpandToggle = false,
  this.showFilterSummary = true,
  this.showModeSummary = true,
  this.onFilterSelected,
  this.onModeSelected,
  this.onExpandedChanged,
  super.key,
});