ExpandableListTile constructor

const ExpandableListTile({
  1. Key? key,
  2. Widget? leading,
  3. required Widget title,
  4. Widget? subtitle,
  5. Color? backgroundColor,
  6. ValueChanged<bool>? onExpansionChanged,
  7. List<Widget> children = const <Widget>[],
  8. Widget? trailing,
  9. bool initiallyExpanded = false,
})

Implementation

const ExpandableListTile({
  Key? key,
  this.leading,
  required this.title,
  this.subtitle,
  this.backgroundColor,
  this.onExpansionChanged,
  this.children = const <Widget>[],
  this.trailing,
  this.initiallyExpanded = false,
}) : super(key: key);