HugeListViewController constructor

HugeListViewController({
  1. required int totalItemCount,
})

A controller for a HugeListView widget.

Remember to dispose of the HugeListViewController when it's no longer needed. This will ensure we discard any resources used by the object.

Implementation

HugeListViewController({required int totalItemCount})
    : super(HugeListViewControllerValue(totalItemCount, false, false, false));