isDateBefore method

bool isDateBefore(
  1. DateTime date
)

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

Implementation

bool isDateBefore(DateTime date) =>
    getDateOnly().isBefore(date.getDateOnly());