SectionWidgetBuilder typedef

SectionWidgetBuilder = Widget Function(BuildContext context, int section)

Signature for a function that returns the the number of items(rows) in a given section

Used by GroupListView.

Implementation

typedef SectionWidgetBuilder = Widget Function(
  BuildContext context,
  int section,
);