load method

Future<List<T>?> load({
  1. bool isCached = true,
})

Implementation

Future<List<T>?> load({bool isCached = true}) {
  loader.isRefresh = false;
  return super.fetchList(isCached: isCached);
}