getUserProfile method
Get the combined profile information for this user. This API may be used
to fetch the user's own profile information or other users; either
locally or on remote nodes. This API may return keys which are not
limited to displayname
or avatar_url
.
userId
The user whose profile information to get.
Implementation
Future<ProfileInformation> getUserProfile(String userId) async {
final requestUri =
Uri(path: '_api/client/v3/profile/${Uri.encodeComponent(userId)}');
final request = Request('GET', baseUri!.resolveUri(requestUri));
final response = await httpClient.send(request);
final responseBody = await response.stream.toBytes();
if (response.statusCode != 200) unexpectedResponse(response, responseBody);
final responseString = utf8.decode(responseBody);
final json = jsonDecode(responseString);
return ProfileInformation.fromJson(json as Map<String, Object?>);
}