countRender method

Widget countRender(
  1. num count
)

Renders the item count display.

Override this method to display the total count of items. Default implementation returns an empty widget.

Parameters:

  • count: The total number of items.

Implementation

Widget countRender(num count) {
  return const SizedBox.shrink();
}