ExpansionCard constructor

const ExpansionCard({
  1. Key? key,
  2. required String title,
  3. String? subtitle,
  4. IconData? icon,
  5. required List<Widget> children,
  6. bool initiallyExpanded = false,
  7. ValueChanged<bool>? onExpansionChanged,
})

Implementation

const ExpansionCard({
  super.key,
  required this.title,
  this.subtitle,
  this.icon,
  required this.children,
  this.initiallyExpanded = false,
  this.onExpansionChanged,
});