ExpansionListItem constructor

const ExpansionListItem({
  1. Key? key,
  2. dynamic onTap()?,
  3. String? title,
  4. bool showArrow = false,
  5. bool smallVersion = false,
  6. MainAxisAlignment? mainAxisAlignment,
  7. Icon? icon,
  8. Icon? leadingIcon,
  9. required double height,
  10. TextStyle? textStyle,
  11. double? itemSpacing,
  12. bool isChildren = false,
})

Implementation

const ExpansionListItem({
  Key? key,
  this.onTap,
  this.title,
  this.showArrow = false,
  this.smallVersion = false,
  this.mainAxisAlignment,
  this.icon,
  this.leadingIcon,
  required this.height,
  this.textStyle,
  this.itemSpacing,
  this.isChildren = false,
}) : super(key: key);