resetPassword method
Implementation
Future<bool> resetPassword({
required String token,
required String newPassword,
}) async {
try {
await _emailAuthService.resetPassword(token: token, newPassword: newPassword);
return true;
} on DioException catch (e) {
_handleError(e);
return false;
}
}