TooltipConfiguration<T> constructor

const TooltipConfiguration<T>({
  1. required WidgetBuilder builder,
  2. AlignmentGeometry alignment = Alignment.center,
  3. Offset? position,
  4. AlignmentGeometry? anchorAlignment,
  5. Offset? offset,
  6. bool follow = true,
  7. Key? key,
})

Implementation

const TooltipConfiguration({
  required this.builder,
  this.alignment = Alignment.center,
  this.position,
  this.anchorAlignment,
  this.offset,
  this.follow = true,
  this.key,
});