getAvatar method
Get the avatar.
Returns a Future containing a DynamiteResponse
with the status code, deserialized body and headers.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Parameters:
userId
ID of the user.size
Size of the avatar.
Status codes:
- 200: Avatar returned
- 404: Avatar not found
See:
- $getAvatar_Request for the request send by this method.
- $getAvatar_Serializer for a converter to parse the
Response
from an executed request.
Implementation
Future<_i1.DynamiteResponse<Uint8List, AvatarAvatarGetAvatarHeaders>> getAvatar({
required String userId,
required int size,
}) async {
final _request = $getAvatar_Request(
userId: userId,
size: size,
);
final _response = await _rootClient.httpClient.send(_request);
final _serializer = $getAvatar_Serializer();
final _rawResponse =
await _i1.ResponseConverter<Uint8List, AvatarAvatarGetAvatarHeaders>(_serializer).convert(_response);
return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}