getGames method

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

Implementation

Future<GamesResponse> getGames(int limit, int offset, String cacheKey,
    [Config? config]) async {
  return GameolivePlatform.instance.getGames(limit, offset, cacheKey, config);
}