NodeTooltipTheme<T> constructor

const NodeTooltipTheme<T>({
  1. bool useTooltip = false,
  2. TooltipPosition position = TooltipPosition.top,
  3. EdgeInsetsGeometry? margin,
  4. double verticalOffset = 20.0,
  5. Duration? waitDuration,
  6. String? message,
  7. TextStyle? textStyle,
  8. InlineSpan? richMessage,
  9. InlineSpan? richMessageResolver(
    1. Node<T> node
    )?,
  10. Color? backgroundColor,
  11. List<BoxShadow>? boxShadow,
})

Creates a NodeTooltipTheme

Implementation

const NodeTooltipTheme({
  this.useTooltip = false,
  this.position = TooltipPosition.top,
  this.margin,
  this.verticalOffset = 20.0,
  this.waitDuration,
  this.message,
  this.textStyle,
  this.richMessage,
  this.richMessageResolver,
  this.backgroundColor,
  this.boxShadow,
});