isInBoundsLeft method

bool isInBoundsLeft(
  1. double? x
)

Implementation

bool isInBoundsLeft(double? x) {
  if (x == null) return false;
  return _contentRect.left <= x + 1;
}