getTrailers static method

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

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

Implementation

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