operator == method Null safety

bool operator ==(
  1. Object other
)
override

Returns true if other is a DateTime at the same moment and in the same time zone (UTC or local).

final dDayUtc = DateTime.utc(1944, 6, 6);
final dDayLocal = dDayUtc.toLocal();

// These two dates are at the same moment, but are in different zones.
assert(dDayUtc != dDayLocal);
print(dDayUtc != dDayLocal); // true

See isAtSameMomentAs for a comparison that compares moments in time independently of their zones.

Implementation

external bool operator ==(Object other);