sendResetPassword method
Future<void>
sendResetPassword({
- required ResetPasswordAuthBody body,
- String? authorization,
override
Implementation
@override
Future<void> sendResetPassword({
required ResetPasswordAuthBody body,
String? authorization,
}) async {
await _client.request(
method: 'POST',
path: '/auth/reset-password',
headers: {'authorization': authorization},
body: body,
);
}