Returns a new Duration from applying this to base.
this
base
If this is none, returns null.
null
Duration? apply(Duration base) { if (this == none) return null; return duration ?? base * scaleFactor!; }