getUser method
Get details about a user.
Sign the provided TGetUserBody with the client's stamp function and submit the request (POST /public/v1/query/get_user).
See also: stampGetUser.
Implementation
Future<TGetUserResponse> getUser({
required TGetUserBody input,
}) async {
return await request<TGetUserBody, TGetUserResponse>(
"/public/v1/query/get_user",
input,
(json) => TGetUserResponse.fromJson(json));
}