OptionListTile constructor

const OptionListTile({
  1. Key? key,
  2. String? title,
  3. Widget? leading,
  4. Widget? trailing,
  5. VoidCallback? onTap,
  6. Color? titleColor,
  7. Color? tileColor,
  8. Color? separatorColor,
  9. TextStyle? titleTextStyle,
})

Constructor for creating OptionListTile

Implementation

const OptionListTile({
  Key? key,
  this.title,
  this.leading,
  this.trailing,
  this.onTap,
  this.titleColor,
  this.tileColor,
  this.separatorColor,
  this.titleTextStyle,
}) : super(key: key);