getAuthenticators method

Future<TGetAuthenticatorsResponse> getAuthenticators({
  1. required TGetAuthenticatorsBody input,
})

Get details about authenticators for a user.

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

See also: stampGetAuthenticators.

Implementation

Future<TGetAuthenticatorsResponse> getAuthenticators({
  required TGetAuthenticatorsBody input,
}) async {
  return await request<TGetAuthenticatorsBody, TGetAuthenticatorsResponse>(
      "/public/v1/query/get_authenticators",
      input,
      (json) => TGetAuthenticatorsResponse.fromJson(json));
}