operator > method - Duration class - dart:core library (original) (raw)
bool operator >(
- Duration other )
Whether this Duration is longer than other
.
Implementation
bool operator >(Duration other) => this._duration > other._duration;
bool operator >(
Whether this Duration is longer than other
.
bool operator >(Duration other) => this._duration > other._duration;