loadMore method

Future<List<T>> loadMore({
  1. Source source = Source.serverAndCache,
})

Implementation

Future<List<T>> loadMore({
  Source source = Source.serverAndCache,
}) async {
  final documents =
      await _load(source: source, startAfterDocument: _startAfterDocument);
  return documents.map(decode).cast<T>().toList();
}