getSession method
Implementation
Future<Tuple2> getSession() async {
http.Response res = await api.get("com.atproto.server.getSession",
headers: {"Authorization": "Bearer ${api.session.accessJwt}"});
return Tuple2<int, Map<String, dynamic>>(
res.statusCode, json.decode(res.body));
}