isAtSameSecondAs method

bool isAtSameSecondAs(
  1. DateTime other, {
  2. bool enforceUTC = false,
})

Returns if two dates are in same second, minute, hour, day, month, year.

Assumes both this and other has same timezone

To convert both to UTC before comparison, set enforceUTC to true

Implementation

bool isAtSameSecondAs(
  DateTime other, {
  bool enforceUTC = false,
}) =>
    _isAtSameUnitAs(
      other,
      DurationUnit.second,
      enforceUTC: enforceUTC,
    );