FeedLoader<T> typedef

FeedLoader<T> = Future<Tuple2<List<T>, String?>> Function(int size, [String? token])

Loader for the feed returns a tuple of lst items with a token

Implementation

typedef FeedLoader<T> = Future<Tuple2<List<T>, String?>> Function(int size, [String? token]);