FSelectTile<T>.suffix constructor
FSelectTile<T>.suffix ({
- required Widget title,
- required T value,
- FTileStyle? style,
- Widget? subtitle,
- Widget? details,
- String? semanticLabel,
- ValueChanged<
bool> ? onChange, - bool? enabled,
- bool autofocus = false,
- FocusNode? focusNode,
- ValueChanged<
bool> ? onFocusChange, - Widget? prefixIcon,
- Widget? checkedIcon,
- Widget? uncheckedIcon,
- Key? key,
Creates a FSelectTile with a suffix check icon.
Implementation
FSelectTile.suffix({
required this.title,
required this.value,
this.style,
this.subtitle,
this.details,
this.semanticLabel,
this.onChange,
this.enabled,
this.autofocus = false,
this.focusNode,
this.onFocusChange,
Widget? prefixIcon,
Widget? checkedIcon,
Widget? uncheckedIcon,
super.key,
}) : _icon = prefixIcon,
checkedIcon = checkedIcon ?? FIcon(FAssets.icons.check),
uncheckedIcon = uncheckedIcon ?? FIcon.empty(),
_suffix = true;