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