ExpansionTile constructor

const ExpansionTile({
  1. Key? key,
  2. Key? tileKey,
  3. required String title,
  4. String? subtitle,
  5. Widget? subtitleWidget,
  6. Widget? leading,
  7. required List<Widget> children,
  8. bool initiallyExpanded = false,
})

Implementation

const ExpansionTile({
  super.key,
  this.tileKey,
  required this.title,
  this.subtitle,
  this.subtitleWidget,
  this.leading,
  required this.children,
  this.initiallyExpanded = false,
});