isSameDay method

bool isSameDay(
  1. Date other
)

Check if this date is in the same day than other

Implementation

bool isSameDay(Date other) => this == other;