timeAgo method
Implementation
String timeAgo({String locale = 'ru', bool short = false, Duration? fromDateTime}) {
return timeago.format(
toDateTime(),
locale: short ? '${locale}_short' : locale,
clock: fromDateTime != null ? fromDateTime.toDateTime() : const Duration().toDateTime(),
);
}