ItemSectionWidget constructor

const ItemSectionWidget({
  1. Key? key,
  2. Widget? title,
  3. List<Widget?>? children,
  4. ItemSectionExtendedController? controller,
})

Implementation

const ItemSectionWidget({
  Key? key,
  this.title,
  this.children,
  this.controller,
})  : itemBuilder = null,
      itemCount = null,
      useSliver = false,
      super(key: key);