ZoomWidget constructor

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

Implementation

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