ZeroTooltip constructor

const ZeroTooltip({
  1. Key? key,
  2. required Widget child,
  3. required String text,
  4. OnTooltipCreatedCallback? onCreated,
  5. ZeroTooltipPosition position = ZeroTooltipPosition.top,
  6. ZeroTooltipVariant variant = ZeroTooltipVariant.rectangle,
  7. Brightness? brightness,
  8. ZeroTooltipStyle? style,
})

Implementation

const ZeroTooltip({
  super.key,
  required this.child,
  required this.text,
  this.onCreated,
  this.position = ZeroTooltipPosition.top,
  this.variant = ZeroTooltipVariant.rectangle,
  this.brightness,
  this.style,
});