getAccessToken method
Implementation
Future<String> getAccessToken() async {
try {
final prefs = await SharedPreferences.getInstance();
var at = prefs.getString(prefixAccessToken);
if (at == null) throw ("Access Token not found");
return at;
} catch (e) {
// print(e);
throw (e);
}
}