resetPassword method
Reset a user account password using a token.
Implementation
Future<XRPCResponse<EmptyData>> resetPassword({
required String token,
required String password,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoServerResetPassword(
token: token,
password: password,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);