occursAfter method

bool occursAfter(
  1. Period other
)

Returns true if this occurs after other.

Implementation

bool occursAfter(Period other) => start.isAfter(other.end);