isInBoundsTop method

bool isInBoundsTop(
  1. double? y
)

Implementation

bool isInBoundsTop(double? y) {
  if (y == null) return false;
  return _contentRect.top <= y;
}