HoverX constructor

const HoverX({
  1. Key? key,
  2. required String title,
  3. TextStyle? titleStyle,
  4. required ImageProvider<Object> image,
  5. required Color hoverColor,
  6. double height = 370,
  7. double? width,
  8. BorderRadiusGeometry? borderRadius,
})

Implementation

const HoverX({
  Key? key,
  required this.title,
  this.titleStyle,
  required this.image,
  required this.hoverColor,
  this.height = 370,
  this.width,
  this.borderRadius,
}) : super(key: key);