HoverRectangularImageCard constructor

HoverRectangularImageCard({
  1. required String imageUrl,
  2. required double width,
  3. required double height,
  4. double? cornerRadius = 0,
})

Implementation

HoverRectangularImageCard({
  required this.imageUrl,
  required this.width,
  required this.height,
  this.cornerRadius: 0,
});