isDateAfter method

bool isDateAfter(
  1. DateTime date
)

Check if this is after than date (without reference to Time)

Implementation

bool isDateAfter(DateTime date) => getDateOnly().isAfter(date.getDateOnly());