getSavedGames static method

Future<List<SavedGame>?> getSavedGames()

Get all saved games.

Implementation

static Future<List<SavedGame>?> getSavedGames() async {
  return await SaveGame.getSavedGames();
}