hasColumn method

bool hasColumn(
  1. int column
)

is the column in this range

Implementation

bool hasColumn(int column) {
  final (fromC, toC) = (from.column ?? 0, to.column ?? _maxInt);
  return column >= fromC && column <= toC;
}