getTimeAgoForChat static method

String getTimeAgoForChat(
  1. DateTime? date, {
  2. Locale? locale,
})

Implementation

static String getTimeAgoForChat(DateTime? date, {Locale? locale}) {
  return _delegate.timeAgoForChat(
    date,
    locale: locale,
  );
}