ItemSectionWidget constructor

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

Implementation

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