toTimeAgoString method
Implementation
String? toTimeAgoString() {
if (this == null) {
NyLogger.dump('DateTime is null', null);
return null;
}
return GetTimeAgo.parse(this!, locale: Nylo.instance.locale);
}
String? toTimeAgoString() {
if (this == null) {
NyLogger.dump('DateTime is null', null);
return null;
}
return GetTimeAgo.parse(this!, locale: Nylo.instance.locale);
}