operator == method
- Objectother
override
Whether thisDuration has the same length asother.
Durations have the same length if they have the same numberof microseconds, as reported byinMicroseconds.
Implementation
bool operator ==(Object other) => other is Duration && _duration == other.inMicroseconds;