loadItems method

void loadItems({
  1. F? filter,
})

Loads items using the given filter.

It's most suitable for initial data fetch or for retry action when the first fetch fails. It can also be used when filter changes when a full reload is required.

Implementation

void loadItems({F? filter}) => add(LoadList(filter));