WebHoverCard constructor
const
WebHoverCard({
- Key? key,
- Widget? child,
- Widget builder(
- bool isHovered
- VoidCallback? onTap,
- void onSecondaryTapDown()?,
- BorderRadius? borderRadius,
- Color? hoverColor,
- String? tooltip,
- 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);