HoverImageSlide constructor

HoverImageSlide({
  1. List<Positioned>? positionedChildren,
  2. required Image image,
  3. required double width,
  4. required double height,
  5. double? cornerRadius,
  6. double? padding,
  7. dynamic onImageTapped()?,
})

Implementation

HoverImageSlide({
  this.positionedChildren,
  required this.image,
  required this.width,
  required this.height,
  this.cornerRadius,
  this.padding,
  this.onImageTapped,
});