tosecondFormateString property

String get tosecondFormateString

Implementation

String get tosecondFormateString {
  String fm = "## second'# left";
  if (this != null) {
    if (this?.second != null) {
      fm = this?.second ?? fm;
    }
  }
  return fm;
}