getWallets method
List all wallets within an organization.
Sign the provided TGetWalletsBody with the client's stamp function and submit the request (POST /public/v1/query/list_wallets).
See also: stampGetWallets.
Implementation
Future<TGetWalletsResponse> getWallets({
required TGetWalletsBody input,
}) async {
return await request<TGetWalletsBody, TGetWalletsResponse>(
"/public/v1/query/list_wallets",
input,
(json) => TGetWalletsResponse.fromJson(json));
}