isTheSameDate method

bool isTheSameDate(
  1. Date other
)

Checks if this is the same date as other.

Implementation

bool isTheSameDate(final Date other) => _date.isTheSameDate(other);