ExpandableParameters constructor

const ExpandableParameters({
  1. IconData? prefixIcon,
  2. String? title,
  3. bool isSwitch = false,
  4. bool isExpandeable = true,
  5. Widget? expandedWidget,
  6. Widget? suffixWidget,
  7. VoidCallback? onExpandedSectionToggle,
  8. String? subtitle,
  9. String? description,
  10. Widget? trailing,
})

Implementation

const ExpandableParameters({
  this.prefixIcon,
  this.title,
  this.isSwitch = false,
  this.isExpandeable = true,
  this.expandedWidget,
  this.suffixWidget,
  this.onExpandedSectionToggle,
  this.subtitle,
  this.description,
  this.trailing,
});