toDayFormateString property
String
get
toDayFormateString
Implementation
String get toDayFormateString {
String fm = "## day'# ago";
if (this != null) {
if (this?.day != null) {
fm = this?.day ?? fm;
}
}
return fm;
}