FastTooltip constructor

const FastTooltip({
  1. Key? key,
  2. required String message,
  3. required Widget child,
  4. Duration waitDuration = const Duration(seconds: 1),
  5. EdgeInsetsGeometry margin = const EdgeInsets.only(top: 8),
  6. bool preferBelow = true,
})

Implementation

const FastTooltip({
  super.key,
  required this.message,
  required this.child,
  this.waitDuration = const Duration(seconds: 1),
  this.margin = const EdgeInsets.only(top: 8),
  this.preferBelow = true,
});