CardSection constructor

const CardSection({
  1. String? header,
  2. Component? headerComponent,
  3. required List<Component> children,
  4. EdgeInsets? padding,
  5. double? radius,
  6. double gap = 12,
  7. List<Component>? trailing,
  8. Key? key,
})

Implementation

const CardSection({
  this.header,
  this.headerComponent,
  required this.children,
  this.padding,
  this.radius,
  this.gap = 12,
  this.trailing,
  super.key,
});