readingTimeMinutes property

int get readingTimeMinutes

Estimates the reading time in minutes (225 words per minute).

Implementation

int get readingTimeMinutes {
  final trimmed = trim();
  if (trimmed.isEmpty) return 0;
  return (trimmed.split(RegExp(r'\s+')).length / 225).ceil();
}