getOtpRecoverKeys method

Future<OtpRecoveryKeysOutput> getOtpRecoverKeys({
  1. required String baseUrl,
  2. required String authToken,
  3. required String jwt,
  4. dynamic hint,
})
override

Implementation

Future<OtpRecoveryKeysOutput> getOtpRecoverKeys(
    {required String baseUrl,
    required String authToken,
    required String jwt,
    dynamic hint}) {
  var arg0 = _platform.api2wire_String(baseUrl);
  var arg1 = _platform.api2wire_String(authToken);
  var arg2 = _platform.api2wire_String(jwt);
  return _platform.executeNormal(FlutterRustBridgeTask(
    callFfi: (port_) =>
        _platform.inner.wire_get_otp_recover_keys(port_, arg0, arg1, arg2),
    parseSuccessData: _wire2api_otp_recovery_keys_output,
    parseErrorData: _wire2api_FrbAnyhowException,
    constMeta: kGetOtpRecoverKeysConstMeta,
    argValues: [baseUrl, authToken, jwt],
    hint: hint,
  ));
}