Movatterモバイル変換


[0]ホーム

URL:


menu
  1. Dart
  2. dart:core
  3. Duration
  4. operator == method
operator ==
description

operator == method

booloperator ==(
  1. 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;
  1. Dart
  2. dart:core
  3. Duration
  4. operator == method
Duration class

[8]ページ先頭

©2009-2025 Movatter.jp