isAtSameMomentAs method

bool isAtSameMomentAs(
  1. Time other
)

Checks if this time instance represents the exact same moment as other.

Implementation

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