timeAgo static method

String timeAgo({
  1. required DateTime date,
  2. String locale = 'en',
})

Implementation

static String timeAgo({required DateTime date, String locale = 'en'}) {
  return timeago.format(date, locale: locale);
}