CardSectionProps constructor

const CardSectionProps({
  1. String? header,
  2. Widget? headerComponent,
  3. required List<Widget> children,
  4. String? padding,
  5. String? radius,
  6. String? gap,
  7. List<Widget>? trailing,
})

Implementation

const CardSectionProps({
  this.header,
  this.headerComponent,
  required this.children,
  this.padding,
  this.radius,
  this.gap,
  this.trailing,
});