OptionEntryTile constructor

const OptionEntryTile({
  1. Key? key,
  2. required dynamic leading,
  3. required String title,
  4. String? description,
  5. VoidCallback? onTap,
  6. OptionEntryTileActionIcon actionIcon = OptionEntryTileActionIcon.navigateNext,
  7. Icon? customActionIcon,
  8. Color? color,
  9. Color? borderColor,
})

Creates an OptionEntryTile with a custom leading widget.

Implementation

const OptionEntryTile({
  super.key,
  required leading,
  required this.title,
  this.description,
  this.onTap,
  this.actionIcon = OptionEntryTileActionIcon.navigateNext,
  this.customActionIcon,
  this.color,
  this.borderColor,
}) : _leading = leading,
     _icon = null,
     _svgIconAsset = null;