getGames method

  1. @override
Future<GamesResponse> getGames(
  1. int limit,
  2. int offset,
  3. String cacheKey, [
  4. Config? config,
])
override

Implementation

@override
Future<GamesResponse> getGames(int limit, int offset, String cacheKey,
    [Config? config]) async {
  config ??= CONFIG!;
  return fetchGames(limit, offset, cacheKey, config);
}