groupCounter method

Widget groupCounter(
  1. S2Group<T> group
)

Returns the group counter widget

Implementation

Widget groupCounter(S2Group<T> group) {
  return Text(
    group.count.toString(),
    style: group.headerStyle!.textStyle,
  );
}