ReplayEventHistoryPanel constructor
ReplayEventHistoryPanel({
- required List<
ReplayEventPresentation> events, - String title = 'Replay History',
- int maxItems = 5,
- ReplayEventHistoryFilter filter = ReplayEventHistoryFilter.all,
- ReplayEventHistoryMode mode = ReplayEventHistoryMode.flat,
- bool expanded = false,
- bool showTypeChips = false,
- bool showFilterChips = false,
- bool showModeChips = false,
- bool showExpandToggle = false,
- bool showFilterSummary = true,
- bool showModeSummary = true,
- ValueCmdCallback<
ReplayEventHistoryFilter> ? onFilterSelected, - ValueCmdCallback<
ReplayEventHistoryMode> ? onModeSelected, - ValueCmdCallback<
bool> ? onExpandedChanged, - 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,
});