RenderExpandableSectionContainer constructor

RenderExpandableSectionContainer({
  1. required ScrollableState scrollable,
  2. required ExpandableListController controller,
  3. dynamic sticky = true,
  4. dynamic overlapsContent = false,
  5. int listIndex = -1,
  6. List<int> sectionRealIndexes = const [],
  7. bool separated = false,
  8. required RenderExpandableSliverList renderSliver,
})

Implementation

RenderExpandableSectionContainer({
  required ScrollableState scrollable,
  required ExpandableListController controller,
  sticky = true,
  overlapsContent = false,
  int listIndex = -1,
  List<int> sectionRealIndexes = const [],
  bool separated = false,
  required RenderExpandableSliverList renderSliver,
})  : _scrollable = scrollable,
      _controller = controller,
      _sticky = sticky,
      _overlapsContent = overlapsContent,
      _listIndex = listIndex,
      _sectionRealIndexes = sectionRealIndexes,
      _separated = separated,
      _renderSliver = renderSliver;