WebHoverCard constructor

const WebHoverCard({
  1. Key? key,
  2. Widget? child,
  3. Widget builder(
    1. bool isHovered
    )?,
  4. VoidCallback? onTap,
  5. void onSecondaryTapDown(
    1. TapDownDetails
    )?,
  6. BorderRadius? borderRadius,
  7. Color? hoverColor,
  8. String? tooltip,
  9. EdgeInsets? padding,
})

Implementation

const WebHoverCard({
  super.key,
  this.child,
  this.builder,
  this.onTap,
  this.onSecondaryTapDown,
  this.borderRadius,
  this.hoverColor,
  this.tooltip,
  this.padding,
}) : assert(child != null || builder != null);