SectionTile constructor

const SectionTile({
  1. Key? key,
  2. String? titleText,
  3. Widget? icon,
  4. VoidCallback? onTap,
  5. Color? color,
  6. Widget? title,
  7. Widget? subTitle,
  8. Widget? trailing,
  9. bool dense = false,
})

Implementation

const SectionTile({
  Key? key,
  this.titleText,
  this.icon,
  this.onTap,
  this.color,
  this.title,
  this.subTitle,
  this.trailing,
  this.dense = false,
}) : super(key: key);