operator <= method

  1. @override
bool operator <=(
  1. Duration other
)
override

Whether this Duration is shorter than or equal to other.

Implementation

@override
bool operator <=(Duration other) => value <= other;