timeAgo method
Implementation
String timeAgo() {
if (BZObjectUtil.isEmpty(this)) {
return '';
}
final dateTime = DateTime.parse(this);
return dateTime.timeAgo();
}
String timeAgo() {
if (BZObjectUtil.isEmpty(this)) {
return '';
}
final dateTime = DateTime.parse(this);
return dateTime.timeAgo();
}