KntExpandableSection constructor

const KntExpandableSection({
  1. Key? key,
  2. bool? expandedAtFirst,
  3. double? paddingVertical,
  4. double? paddingHorizontal,
  5. Widget? expandedIcon,
  6. Widget? collapsedIcon,
  7. Widget? summaryContent,
  8. Widget? unfoldedContent,
  9. Color? backgroundColor,
  10. bool needDivider = false,
  11. bool needShadow = true,
})

Implementation

const KntExpandableSection({
  super.key,
  this.expandedAtFirst,
  this.paddingVertical,
  this.paddingHorizontal,
  this.expandedIcon,
  this.collapsedIcon,
  this.summaryContent,
  this.unfoldedContent,
  this.backgroundColor,
  this.needDivider = false,
  this.needShadow = true,
});