containsOffset method

bool containsOffset(
  1. int other
)

it check if other offset is in this scheme

Implementation

bool containsOffset(int other) => startAt <= other && endAt > other;