resetPassword method
Implementation
Future<core.XRPCResponse<core.EmptyData>> resetPassword({
required String password,
required String token,
}) async =>
await _ctx.post(
ns.comAtprotoServerResetPassword,
body: {
'password': password,
'token': token,
},
);