ListEntry constructor

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

Implementation

const ListEntry(
    {super.key,
    this.isThreeLine = false,
    this.enabled = true,
    this.dense = true,
    this.arrow = false,
    this.inkWell = 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});