CardSection constructor

const CardSection({
  1. Widget? leading,
  2. Widget? trailing,
  3. Widget? title,
  4. Widget? subtitle,
  5. String? titleText,
  6. String? subtitleText,
  7. List<Widget> children = const <Widget>[],
  8. void onPressed()?,
  9. Key? key,
})

Implementation

const CardSection({
  this.leading,
  this.trailing,
  this.title,
  this.subtitle,
  this.titleText,
  this.subtitleText,
  this.children = const <Widget>[],
  this.onPressed,
  super.key,
});