operator >= method - Duration class - dart:core library (original) (raw)

description

bool operator >=(

  1. Duration other )

Whether this Duration is longer than or equal to other.

Implementation

bool operator >=(Duration other) => this._duration >= other._duration;