QdsBalloonTooltipComponent constructor

const QdsBalloonTooltipComponent({
  1. Key? key,
  2. required Widget child,
  3. required TooltipUiState uiState,
  4. bool isVisible = false,
  5. VoidCallback? onTooltipTap,
  6. Duration? visibleDuration,
  7. double? offset,
})

Implementation

const QdsBalloonTooltipComponent({
  super.key,
  required this.child,
  required this.uiState,
  this.isVisible = false,
  this.onTooltipTap,
  this.visibleDuration,
  this.offset,
});