ArcaneCard.interactive constructor

const ArcaneCard.interactive({
  1. required Component child,
  2. EdgeInsets? padding,
  3. double? radius,
  4. void onTap()?,
  5. Color? color,
  6. bool fillWidth = false,
  7. Key? key,
})

Interactive card (shows hover effect)

Implementation

const ArcaneCard.interactive({
  required this.child,
  this.padding,
  this.radius,
  this.onTap,
  this.color,
  this.fillWidth = false,
  super.key,
})  : style = CardStyle.interactive,
      border = true,
      elevation = 0;