OptionEntryTile constructor
- Key? key,
- required dynamic leading,
- required String title,
- String? description,
- VoidCallback? onTap,
- OptionEntryTileActionIcon actionIcon = OptionEntryTileActionIcon.navigateNext,
- Icon? customActionIcon,
- Color? color,
- 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;