toWeekFormateString property

String get toWeekFormateString

Implementation

String get toWeekFormateString {
  String fm = "## week'# ago";
  if (this != null) {
    if (this?.week != null) {
      fm = this?.week ?? fm;
    }
  }
  return fm;
}