Future<bool> forgotPassword(String email) async { try { await _emailAuthService.forgotPassword(email); return true; } on DioException catch (e) { _handleError(e); return false; } }