getTotpUri abstract method

  1. @POST.new("/two-factor/get-totp-uri")
Future<Result<TotpUriResponse>> getTotpUri({
  1. @Body.new() required TwoFactorPasswordBody body,
})

Returns the current TOTP URI. Requires the user's password.

Implementation

@POST("/two-factor/get-totp-uri")
Future<Result<TotpUriResponse>> getTotpUri({
  @Body() required TwoFactorPasswordBody body,
});