GNToolTip constructor

const GNToolTip({
  1. Key? key,
  2. required Widget child,
  3. required Widget content,
  4. double? arrowLength,
  5. double? arrowTipRadius,
  6. double? arrowBaseWidth,
  7. Color? backgroundColor,
})

Implementation

const GNToolTip({
  super.key,
  required this.child,
  required this.content,
  this.arrowLength,
  this.arrowTipRadius,
  this.arrowBaseWidth,
  this.backgroundColor,
});