toPlainText method
Convert the entire page content to clean plain text
Implementation
String toPlainText() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return ContentFormatter.toPlainText(_htmlContent!);
}
Convert the entire page content to clean plain text
String toPlainText() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return ContentFormatter.toPlainText(_htmlContent!);
}