ArcaneCard constructor

const ArcaneCard({
  1. required Component child,
  2. CardStyle? style,
  3. EdgeInsets? padding,
  4. double? radius,
  5. bool border = true,
  6. int elevation = 0,
  7. void onTap()?,
  8. Color? color,
  9. bool fillWidth = false,
  10. Key? key,
})

Implementation

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