CustomAnimated3DCard constructor

const CustomAnimated3DCard({
  1. Key? key,
  2. required dynamic titleImage,
  3. required String characterImage,
  4. required String coverImage,
  5. required String targetUrl,
  6. dynamic onHover(
    1. bool isHovered
    )?,
  7. double? width,
  8. double? height,
  9. double? widthCharacter,
  10. double? heightCharacter,
  11. bool? withShadow,
  12. double? titleBottomPadding,
})

Implementation

const CustomAnimated3DCard({
  super.key,
  required this.titleImage,
  required this.characterImage,
  required this.coverImage,
  required this.targetUrl,
  this.onHover,
  this.width,
  this.height,
  this.widthCharacter,
  this.heightCharacter,
  this.withShadow,
  this.titleBottomPadding,
});