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;