getAll method

  1. @override
Future<List<T>?> getAll([
  1. Map? args
])
override

Implementation

@override
Future<List<T>?> getAll([Map? args]) {
  return (apiSource as GetAllApiSource<T>).getAll(args).then((result) async {
    await (dbSource as PutAllDbSource<T>).putAll(result, args: args);
    return result;
  });
}