SeniorPanelData constructor

SeniorPanelData({
  1. List<SeniorButton>? actions,
  2. Widget? expandedInfo,
  3. required Widget headerInfo,
  4. bool isExpanded = false,
  5. Color severityColor = SeniorColors.grayscale10,
})

The information needed to create the SeniorExpansionPanelList panels.

The headerInfo parameter is required.

Implementation

SeniorPanelData({
  this.actions,
  this.expandedInfo,
  required this.headerInfo,
  this.isExpanded = false,
  this.severityColor = SeniorColors.grayscale10,
});