operator ~/ method

Duration? operator ~/(
  1. int divider
)

Implementation

Duration? operator ~/(int divider) {
  final shadow = this;
  if (shadow == null) return null;

  return Duration(milliseconds: shadow.inMilliseconds ~/ divider);
}