ClearInputIcon<T> constructor
ClearInputIcon<T> ({
- Key? key,
- FormValueChanged<
T?> ? notifier, - Widget? iconOverride,
- TextEditingController? textEditingController,
- required FocusNode? focusNode,
- Widget? unfocused,
- required bool showExpand,
- Widget? expandIcon,
Implementation
ClearInputIcon({
Key? key,
this.notifier,
Widget? iconOverride,
this.textEditingController,
required this.focusNode,
this.unfocused,
required this.showExpand,
this.expandIcon,
}) : icon = iconOverride?.reIcon(color: sunnyColors.textLight, size: 20),
super(key: key);