isSameDayOrBefore method

bool isSameDayOrBefore(
  1. DateTime other
)

Implementation

bool isSameDayOrBefore(DateTime other) => isBefore(other) || isSameDay(other);