Retrieves the current user's profile.
Future<User> getCurrentUser() async { final url = Uri.https(_baseApiHost, '/v1/me'); final jsonResponse = await _getJson(url); return User.fromJson(jsonResponse); }