localizedRelativeTime function
Formats a localized relative time string for the active locale on BloomI18n.instance.
final str = localizedRelativeTime(DateTime.now().subtract(const Duration(minutes: 5)));
// Returns: "5 minutes ago"
See also:
- formatRelativeTime, standalone relative time formatting function.
Implementation
String localizedRelativeTime(DateTime date, [DateTime? relativeTo, String? locale]) =>
formatRelativeTime(date, relativeTo: relativeTo, locale: locale);