operator > method

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

Whether this Duration is longer than other.

Implementation

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