operator / method

Duration? operator /(
  1. int divider
)

Implementation

Duration? operator /(int divider) {
  return this ~/ divider;
}