HoverTooltipWidget constructor

const HoverTooltipWidget({
  1. Key? key,
  2. required String content,
  3. bool markdown = true,
  4. double maxWidth = 400,
  5. double maxHeight = 300,
})

Implementation

const HoverTooltipWidget({
  super.key,
  required this.content,
  this.markdown = true,
  this.maxWidth = 400,
  this.maxHeight = 300,
});