getReadableContent method
Get readable content similar to Readability.js This removes ads, navigation, and other clutter
Implementation
String getReadableContent() {
if (_htmlContent == null) {
throw ScraperNotInitializedException();
}
return ContentFormatter.toReadableContent(_htmlContent!);
}