fetchAll method

Future<List<Record<ISunnyContact>>> fetchAll({
  1. double? offset,
  2. double? limit,
})
inherited

Implementation

Future<List<Record<V>>> fetchAll({double? offset, double? limit}) async {
  final loaded = await repository.list(offset: offset, limit: limit);
  await updateAllItems(loaded.data ?? []);
  return values;
}