isSameDayAs method

bool isSameDayAs(
  1. DateTime other
)

Checks if this date is the same day as other

Implementation

bool isSameDayAs(DateTime other) {
  return DateComparisons.isSameDay(this, other);
}