Returns true if this date is in the same second as other.
true
other
bool isSameSecond(DateTime other) => isSameMinute(other) && second == other.second;