ArcaneHovercard constructor

const ArcaneHovercard({
  1. required Component trigger,
  2. required Component content,
  3. HovercardPosition position = HovercardPosition.top,
  4. bool showArrow = true,
  5. int openDelay = 200,
  6. int closeDelay = 300,
  7. int offset = 8,
  8. bool? isOpen,
  9. void onOpenChange(
    1. bool isOpen
    )?,
  10. Key? key,
})

Implementation

const ArcaneHovercard({
  required this.trigger,
  required this.content,
  this.position = HovercardPosition.top,
  this.showArrow = true,
  this.openDelay = 200,
  this.closeDelay = 300,
  this.offset = 8,
  this.isOpen,
  this.onOpenChange,
  super.key,
});