10 lines
344 B
Dart
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);
|
|
}
|