ListEntry constructor

const ListEntry({
  1. Key? key,
  2. bool isThreeLine = false,
  3. bool enabled = true,
  4. bool dense = true,
  5. bool arrow = false,
  6. String titleText = '',
  7. double arrowSize = 15,
  8. GestureTapCallback? onTap,
  9. String? heroTag,
  10. GestureTapCallback? onDoubleTap,
  11. GestureLongPressCallback? onLongPress,
  12. Widget? title,
  13. double? height,
  14. EdgeInsetsGeometry? padding,
  15. EdgeInsetsGeometry? margin,
  16. BoxDecoration? decoration,
  17. Widget? child,
  18. Color? color,
  19. TextStyle? titleStyle,
  20. Color? underlineColor,
  21. Widget? leading,
  22. Widget? subtitle,
  23. EdgeInsetsGeometry? contentPadding,
  24. bool? selected,
  25. Widget? prefix,
  26. Color? arrowColor,
  27. Widget? arrowIcon,
})

Implementation

const ListEntry(
    {super.key,
    this.isThreeLine = false,
    this.enabled = true,
    this.dense = true,
    this.arrow = false,
    this.titleText = '',
    this.arrowSize = 15,
    this.onTap,
    this.heroTag,
    this.onDoubleTap,
    this.onLongPress,
    this.title,
    this.height,
    this.padding,
    this.margin,
    this.decoration,
    this.child,
    this.color,
    this.titleStyle,
    this.underlineColor,
    this.leading,
    this.subtitle,
    this.contentPadding,
    this.selected,
    this.prefix,
    this.arrowColor,
    this.arrowIcon});