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,
})

Implementation

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