getAuthenticator method

Future<TGetAuthenticatorResponse> getAuthenticator({
  1. required TGetAuthenticatorBody input,
})

Get details about an authenticator.

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

See also: stampGetAuthenticator.

Implementation

Future<TGetAuthenticatorResponse> getAuthenticator({
  required TGetAuthenticatorBody input,
}) async {
  return await request<TGetAuthenticatorBody, TGetAuthenticatorResponse>(
      "/public/v1/query/get_authenticator",
      input,
      (json) => TGetAuthenticatorResponse.fromJson(json));
}