getGameDetails static method

Future<Game> getGameDetails({
  1. required int id,
})

Get a Game by ID with more details (achievement count, alias names, original name, website)

Implementation

static Future<Game> getGameDetails({required int id}) async {
  return RawgUtils.detail(id);
}