AnimatedTooltip constructor

const AnimatedTooltip({
  1. Key? key,
  2. required Widget content,
  3. GlobalKey<State<StatefulWidget>>? targetGlobalKey,
  4. ThemeData? theme,
  5. Duration? delay,
  6. Widget? child,
})

Implementation

const AnimatedTooltip({
  super.key,
  required this.content,
  this.targetGlobalKey,
  this.theme,
  this.delay,
  this.child,
}) : assert(child != null || targetGlobalKey != null);