TooltipPlacementDelegate constructor

TooltipPlacementDelegate({
  1. required Rect screenLocal,
  2. required Rect holeLocal,
  3. required TooltipPosition position,
  4. double gap = _kGap,
  5. EdgeInsets safeArea = EdgeInsets.zero,
  6. List<Rect> extraHoles = const [],
})

Implementation

TooltipPlacementDelegate({
  required this.screenLocal,
  required this.holeLocal,
  required this.position,
  this.gap = _kGap,
  this.safeArea = EdgeInsets.zero,
  this.extraHoles = const [],
});