StructuredCard constructor

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

Implementation

const StructuredCard({
  this.header,
  required this.body,
  this.footer,
  this.style,
  this.padding,
  this.radius,
  this.border = true,
  this.elevation = 0,
  this.onTap,
  super.key,
});