FLStaticListView constructor

const FLStaticListView({
  1. Key? key,
  2. bool? shrinkWrap,
  3. EdgeInsetsGeometry? padding,
  4. IndexedWidgetBuilder? separatorBuilder,
  5. required List<FLStaticSectionData> sections,
})

Implementation

const FLStaticListView({
  Key? key,
  this.shrinkWrap,
  this.padding,
  this.separatorBuilder,
  required this.sections,
})  : assert(sections.length > 0),
      super(key: key);