startsBefore method

bool startsBefore(
  1. DateTime date
)

Returns true if this starts before the given date.

Implementation

bool startsBefore(DateTime date) => start.isBefore(date);