VCard constructor

const VCard({
  1. Key? key,
  2. Widget? image,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? content,
  6. Widget? footer,
  7. MainAxisSize mainAxisSize = MainAxisSize.min,
  8. Clip clipBehavior = Clip.none,
  9. EdgeInsets contentPadding = const EdgeInsets.all(16),
})

Implementation

const VCard({
  super.key,
  this.image,
  this.title,
  this.subtitle,
  this.content,
  this.footer,
  this.mainAxisSize = MainAxisSize.min,
  this.clipBehavior = Clip.none,
  this.contentPadding = const EdgeInsets.all(16),
});