HoverWidget constructor

const HoverWidget({
  1. Key? key,
  2. required Widget builder(
    1. bool isHovered
    ),
  3. Decoration? shadeDecoration,
  4. Color? shadeColor,
  5. Widget? shadeWidget,
  6. double? width,
  7. double? height,
})

Implementation

const HoverWidget({
  Key? key,
  required this.builder,
  this.shadeDecoration,
  this.shadeColor,
  this.shadeWidget,
  this.width,
  this.height,
}) : super(key: key);