HoverListItem constructor

const HoverListItem({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. HighlightController? highlightController,
  4. Widget leadingBuilder(
    1. bool hover
    )?,
  5. Widget trailingBuilder(
    1. bool hover
    )?,
  6. Widget titleBuilder(
    1. bool hover
    )?,
  7. Widget descriptionBuilder(
    1. bool hover
    )?,
})

Implementation

const HoverListItem({
  Key? key,
  this.onTap,
  this.highlightController,
  this.leadingBuilder,
  this.trailingBuilder,
  this.titleBuilder,
  this.descriptionBuilder,
}) : super(key: key);