timeAgo method

String timeAgo({
  1. String locale = 'ru',
  2. bool short = false,
  3. DateTime? fromDateTime,
})

Implementation

String timeAgo({String locale = 'ru', bool short = false, DateTime? fromDateTime}) {
  return timeago.format(this, locale: short ? '${locale}_short' : locale, clock: fromDateTime);
}