getScreenshot static method

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

Get a list of String (URI of image) params: ID of the game

Implementation

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