String toString()

Returns a string representation of this object.

Source

String toString() {
  if (duration != null) return duration.toString();
  if (scaleFactor != null) return "${scaleFactor}x";
  return "none";
}