toHourFormateString property

String get toHourFormateString

Implementation

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