toLocalizedRelativeTime method
Formats this date as a relative time string (e.g. "5 minutes ago").
final rel = DateTime.now().subtract(const Duration(minutes: 10)).toLocalizedRelativeTime();
Implementation
String toLocalizedRelativeTime({DateTime? relativeTo, String? locale}) =>
formatRelativeTime(this, relativeTo: relativeTo, locale: locale);