KohlerInsightsExpansionTile constructor

const KohlerInsightsExpansionTile({
  1. Key? key,
  2. Widget? title,
  3. bool isCollapsible = true,
  4. bool initiallyExpanded = true,
  5. TextStyle? childTextStyle,
  6. Widget? collapsedChild,
  7. required Widget expandedChild,
})

Implementation

const KohlerInsightsExpansionTile({
  super.key,
  this.title,
  this.isCollapsible = true,
  this.initiallyExpanded = true,
  this.childTextStyle,
  this.collapsedChild,
  required this.expandedChild,
});