operator >= method

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

Whether this Duration is longer than or equal to other.

Implementation

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