PrefChevron constructor

const PrefChevron({
  1. Key? key,
  2. Widget? leading,
  3. Widget? title,
  4. Widget? subtitle,
  5. Widget? trailing,
  6. VoidCallback? onTap,
})

Create a PrefButton Widget

Implementation

const PrefChevron({
  super.key,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.onTap,
});