estimateReadingTime method
Estimate reading time for the page content
Implementation
Duration estimateReadingTime({int wordsPerMinute = 200}) {
final plainText = toPlainText();
return ContentFormatter.estimateReadingTime(plainText,
wordsPerMinute: wordsPerMinute);
}