formatTimeAgo static method

String formatTimeAgo(
  1. DateTime dateTime, {
  2. String? locale,
})

Implementation

static String formatTimeAgo(DateTime dateTime, {String? locale}) {
  return GetTimeAgo.parse(dateTime,
      locale: locale ?? Get.locale?.languageCode,
      pattern: CoreConstants.timeAgoPattern,
  );
}