ArcaneStructuredCard constructor

const ArcaneStructuredCard({
  1. Widget? header,
  2. required Widget body,
  3. Widget? footer,
  4. EdgeInsets? padding,
  5. double? radius,
  6. bool border = true,
  7. int elevation = 0,
  8. void onTap()?,
  9. void onClick()?,
  10. Key? key,
})

Implementation

const ArcaneStructuredCard({
  this.header,
  required this.body,
  this.footer,
  this.padding,
  this.radius,
  this.border = true,
  this.elevation = 0,
  void Function()? onTap,
  void Function()? onClick,
  super.key,
}) : _onTap = onTap ?? onClick;