Future<String?> getUserID() async { try { var res = await readItem(key: StorageKeys.userID); return res; } catch (err) { return null; } }