boundaryRect property

void boundaryRect=(Rect value)

Setter for the boundary rect within which the tooltip could be shown

Implementation

set boundaryRect(Rect value) {
  if (renderBox != null) {
    if (renderBox!._boundaryRect == value) {
      return;
    }
    renderBox!._boundaryRect = value;
  }
}