isTheSameDate method

bool isTheSameDate(
  1. Date other
)

Checks is this is on the same date as other.

Implementation

bool isTheSameDate(final Date other) => toDate() == other;