TooltipPositionDelegate constructor

TooltipPositionDelegate({
  1. required bool snapsFarAwayVertically,
  2. required bool snapsFarAwayHorizontally,
  3. required TooltipDirection preferredDirection,
  4. required BoxConstraints constraints,
  5. required double margin,
  6. required double? top,
  7. required double? bottom,
  8. required double? left,
  9. required double? right,
  10. required Offset target,
  11. required RenderBox? overlay,
})

Implementation

TooltipPositionDelegate({
  required this.snapsFarAwayVertically,
  required this.snapsFarAwayHorizontally,
  required this.preferredDirection,
  required this.constraints,
  required this.margin,
  required this.top,
  required this.bottom,
  required this.left,
  required this.right,
  required this.target,
  // @required this.verticalOffset,
  required this.overlay,
});