isAtSameMomentAs method

bool isAtSameMomentAs(
  1. Time other
)

Whether or not this Time object is at the same moment as other.

Implementation

bool isAtSameMomentAs(Time other) =>
    _dateTime.isAtSameMomentAs(other._dateTime);