CUListTitle constructor

  1. @Deprecated("Don't comply with CU specifications")
const CUListTitle(
  1. Widget title, {
  2. Key? key,
  3. Widget? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. double padding = 10,
  7. double outPadding = 20,
  8. VoidCallback? onTap,
  9. Color? color,
  10. String tip = '',
})

Implementation

@Deprecated("Don't comply with CU specifications")
const CUListTitle(this.title,
    {final Key? key,
    this.subtitle,
    this.leading,
    this.trailing,
    this.padding = 10,
    this.outPadding = 20,
    this.onTap,
    this.color,
    this.tip = ''})
    : super(key: key);