proxySignup method

Future<ProxyTSignupResponse> proxySignup({
  1. required ProxyTSignupBody input,
})

Produce a SignedRequest from ProxyTVerifyOtpBody by using the client's stamp function.

See also: VerifyOtp. Onboard a new user.

Sign the provided ProxyTSignupBody with the client's stamp function and submit the request (POST /v1/signup).

See also: stampSignup.

Implementation

/// Onboard a new user.
///
/// Sign the provided `ProxyTSignupBody` with the client's `stamp` function and submit the request (POST /v1/signup).
///
/// See also: `stampSignup`.

Future<ProxyTSignupResponse> proxySignup({
  required ProxyTSignupBody input,
}) async {
  return await authProxyRequest<ProxyTSignupBody, ProxyTSignupResponse>(
      "/v1/signup", input, (json) => ProxyTSignupResponse.fromJson(json));
}