getWallet method
Get details about a wallet.
Sign the provided TGetWalletBody with the client's stamp function and submit the request (POST /public/v1/query/get_wallet).
See also: stampGetWallet.
Implementation
Future<TGetWalletResponse> getWallet({
required TGetWalletBody input,
}) async {
return await request<TGetWalletBody, TGetWalletResponse>(
"/public/v1/query/get_wallet",
input,
(json) => TGetWalletResponse.fromJson(json));
}