OptionEntryTile.svg constructor
- Key? key,
- required String svgIconAsset,
- required String title,
- String? description,
- VoidCallback? onTap,
- OptionEntryTileActionIcon actionIcon = OptionEntryTileActionIcon.navigateNext,
- Icon? customActionIcon,
- Color? color,
- Color? borderColor,
Creates an OptionEntryTile with an SVG asset as the leading widget.
Implementation
const OptionEntryTile.svg({
super.key,
required String svgIconAsset,
required this.title,
this.description,
this.onTap,
this.actionIcon = OptionEntryTileActionIcon.navigateNext,
this.customActionIcon,
this.color,
this.borderColor,
}) : _leading = null,
_icon = null,
_svgIconAsset = svgIconAsset;