operator ~/ method

  1. @override
Duration operator ~/(
  1. int quotient
)
override

Divides this Duration by the given quotient and returns the truncated result as a new Duration object.

The quotient must not be 0.

Implementation

@override
Duration operator ~/(int quotient) => value ~/ quotient;