NicePopover constructor

const NicePopover({
  1. Key? key,
  2. required Widget trigger,
  3. required Widget content,
  4. NicePopoverPosition position = NicePopoverPosition.bottom,
  5. double width = 240,
  6. bool showOnHover = false,
})

Implementation

const NicePopover({
  super.key,
  required this.trigger,
  required this.content,
  this.position = NicePopoverPosition.bottom,
  this.width = 240,
  this.showOnHover = false,
});