operator == 方法
- Object other
override
判断此 Duration 是否与 other
的长度相同。
如果两个 Duration 的微秒数相同,则它们的长度相同,这是通过 inMicroseconds 报告的。
实现
bool operator ==(Object other) =>
other is Duration && _duration == other.inMicroseconds;
判断此 Duration 是否与 other
的长度相同。
如果两个 Duration 的微秒数相同,则它们的长度相同,这是通过 inMicroseconds 报告的。
bool operator ==(Object other) =>
other is Duration && _duration == other.inMicroseconds;