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