isSameDayOrAfter method

bool isSameDayOrAfter(
  1. DateTime other
)

Implementation

bool isSameDayOrAfter(DateTime other) => isAfter(other) || isSameDay(other);