PreferenceListItem constructor

const PreferenceListItem({
  1. Key? key,
  2. EdgeInsets? padding,
  3. Widget? icon,
  4. Widget? title,
  5. Widget? summary,
  6. Widget? detailText,
  7. Widget? accessoryView,
  8. Widget? bottomView,
  9. bool? disabled = false,
  10. VoidCallback? onTap,
})

Implementation

const PreferenceListItem({
  Key? key,
  this.padding,
  this.icon,
  this.title,
  this.summary,
  this.detailText,
  this.accessoryView,
  this.bottomView,
  this.disabled = false,
  this.onTap,
}) : super(key: key);