ZetaTooltip constructor

const ZetaTooltip({
  1. Key? key,
  2. bool? rounded,
  3. required Widget child,
  4. EdgeInsets? padding,
  5. Color? color,
  6. TextStyle? textStyle,
  7. ZetaTooltipArrowDirection arrowDirection = ZetaTooltipArrowDirection.down,
  8. double? maxWidth,
})

Constructor for ZetaTooltip.

Implementation

const ZetaTooltip({
  super.key,
  super.rounded,
  required this.child,
  this.padding,
  this.color,
  this.textStyle,
  this.arrowDirection = ZetaTooltipArrowDirection.down,
  this.maxWidth,
});