SectionCard constructor

const SectionCard({
  1. Key? key,
  2. Widget? header,
  3. String? title,
  4. String? subtitle,
  5. SuperMarker marker = SuperMarker.identity,
  6. Color? accentColor,
  7. IconData? icon,
  8. Widget? headerTrailing,
  9. required Widget child,
  10. EdgeInsetsGeometry? padding,
  11. bool collapsible = false,
  12. bool initiallyExpanded = true,
})

Implementation

const SectionCard({
  super.key,
  this.header,
  this.title,
  this.subtitle,
  this.marker = SuperMarker.identity,
  this.accentColor,
  this.icon,
  this.headerTrailing,
  required this.child,
  this.padding,
  this.collapsible = false,
  this.initiallyExpanded = true,
});