Saves an int value to storage.
static Future<bool> saveInt(String key, int value) async { return await _prefs?.setInt(key, value) ?? false; }