ExpansionHeader constructor

const ExpansionHeader({
  1. Key? key,
  2. required Widget title,
  3. Widget? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. ExpansionButtonStyle? buttonStyle,
  7. ListTileStyle? tileStyle,
})

Implementation

const ExpansionHeader({
  Key? key,
  required this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.buttonStyle,
  this.tileStyle,
}) : super(key: key);