getStoreForGame static method

Future<List<String>> getStoreForGame({
  1. required int gameID,
})

Get a list of String (uri of store thath sell the game)

Implementation

static Future<List<String>> getStoreForGame({required int gameID}) async {
  return RawgUtils.storeGame(gameID);
}