isSameDay method

  1. @useResult
bool isSameDay(
  1. DateTime other
)

True if this date is the same calendar day as other.

Implementation

@useResult
bool isSameDay(DateTime other) => year == other.year && month == other.month && day == other.day;