BsTooltip constructor

const BsTooltip({
  1. Key? key,
  2. required String message,
  3. required Widget child,
  4. BsPlacement placement = BsPlacement.top,
  5. bool disabled = false,
  6. BsVariant? variant,
  7. Color? color,
})

Creates a Bootstrap tooltip.

Implementation

const BsTooltip({
  super.key,
  required this.message,
  required this.child,
  this.placement = BsPlacement.top,
  this.disabled = false,
  this.variant,
  this.color,
});