isAfterOrAt method

bool isAfterOrAt(
  1. int point
)

Checks if the given point is after or at the range

Implementation

bool isAfterOrAt(int point) => point >= max(start, end);