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