getTvcApp method

Future<TGetTvcAppResponse> getTvcApp({
  1. required TGetTvcAppBody input,
})

Get details about a single TVC App

Sign the provided TGetTvcAppBody with the client's stamp function and submit the request (POST /public/v1/query/get_tvc_app).

See also: stampGetTvcApp.

Implementation

Future<TGetTvcAppResponse> getTvcApp({
  required TGetTvcAppBody input,
}) async {
  return await request<TGetTvcAppBody, TGetTvcAppResponse>(
      "/public/v1/query/get_tvc_app",
      input,
      (json) => TGetTvcAppResponse.fromJson(json));
}