extractTitle method
Extract only the page title using smart detection
Implementation
String? extractTitle() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return SmartExtractor.extractTitle(_htmlContent!);
}
Extract only the page title using smart detection
String? extractTitle() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return SmartExtractor.extractTitle(_htmlContent!);
}