HintTooltip constructor
const
HintTooltip({
- required TooltipPosition position,
- String? title,
- String? description,
- Widget tooltipBuilder(
- BuildContext context,
- HintStep step,
- HintTooltipContext ctx
Implementation
const HintTooltip({
required this.position,
this.title,
this.description,
this.tooltipBuilder,
}) : assert(
title != null || tooltipBuilder != null,
'HintTooltip must have title/description (zero-config) or '
'tooltipBuilder (custom tooltip)',
);