sendResetPassword method

  1. @override
Future<void> sendResetPassword({
  1. required ResetPasswordAuthBody body,
  2. 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,
  );
}