ZetaListItem constructor

const ZetaListItem(
  1. {required Widget title,
  2. bool dense = false,
  3. bool enabled = true,
  4. bool enabledDivider = true,
  5. Widget? leading,
  6. VoidCallback? onTap,
  7. bool selected = false,
  8. Widget? subtitle,
  9. Widget? trailing,
  10. Key? key}
)

Creates a ZetaListItem.

Implementation

const ZetaListItem({
  required this.title,
  this.dense = false,
  this.enabled = true,
  this.enabledDivider = true,
  this.leading,
  this.onTap,
  this.selected = false,
  this.subtitle,
  this.trailing,
  super.key,
});