InteractableTooltip constructor

const InteractableTooltip({
  1. required String text,
  2. double xShift = 1,
  3. double yShift = 1,
})

Creates a new InteractableTooltip instance.

Implementation

const InteractableTooltip({
  required this.text,
  this.xShift = 1,
  this.yShift = 1,
});