LineCell constructor

const LineCell({
  1. Key? key,
  2. String? title,
  3. Widget? titleChild,
  4. IconData? iconData,
  5. String? subLabel,
  6. bool showNext = true,
  7. TextStyle? titleStyle,
  8. TextStyle? subLabelStyle,
  9. bool? showLine = true,
  10. VoidCallback? onTap,
  11. VoidCallback? onLongPress,
  12. String? iconPath,
  13. Color? color,
  14. Widget? subLabelChild,
  15. Widget? leading,
  16. double? height = 55,
  17. String? heightKey,
  18. Color? iconColor,
  19. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(horizontal: 25),
})

Implementation

const LineCell({
  Key? key,
  this.title,
  this.titleChild,
  this.iconData,
  this.subLabel,
  this.showNext = true,
  this.titleStyle,
  this.subLabelStyle,
  this.showLine = true,
  this.onTap,
  this.onLongPress,
  this.iconPath,
  this.color,
  this.subLabelChild,
  this.leading,
  this.height = 55,
  this.heightKey,
  this.iconColor,
  this.padding = const EdgeInsets.symmetric(horizontal: 25),
}) : super(key: key);