getUser method

Future<DynamiteResponse<HoverCardGetUserResponseApplicationJson, void>> getUser({
  1. required String userId,
  2. bool? oCSAPIRequest,
})

Get the account details for a hovercard.

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.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Account details returned
  • 404: Account not found

See:

Implementation

Future<_i1.DynamiteResponse<HoverCardGetUserResponseApplicationJson, void>> getUser({
  required String userId,
  bool? oCSAPIRequest,
}) async {
  final _request = $getUser_Request(
    userId: userId,
    oCSAPIRequest: oCSAPIRequest,
  );
  final _response = await _rootClient.httpClient.send(_request);

  final _serializer = $getUser_Serializer();
  final _rawResponse =
      await _i1.ResponseConverter<HoverCardGetUserResponseApplicationJson, void>(_serializer).convert(_response);
  return _i1.DynamiteResponse.fromRawResponse(_rawResponse);
}