1
0
mirror of https://github.com/krawieck/lemmur/ synced 2024-12-17 02:48:47 +01:00
lemmur-app-android/lib/util/extensions/datetime.dart
2021-02-13 17:03:40 +01:00

10 lines
344 B
Dart

import 'package:timeago/timeago.dart' as timeago;
extension FancyTime on DateTime {
/// returns `this` time as a relative, human-readable string. In short format
String get fancyShort => timeago.format(this, locale: 'en_short');
/// returns `this` time as a relative, human-readable string
String get fancy => timeago.format(this);
}