isInBoundsBottom method

bool isInBoundsBottom(
  1. double? y
)

Implementation

bool isInBoundsBottom(double? y) {
  if (y == null) return false;
  y = ((y * 100.0).toInt()) / 100.0;
  return _contentRect.bottom >= y;
}