ClearInputIcon<T> constructor

ClearInputIcon<T>({
  1. Key? key,
  2. FormValueChanged<T?>? notifier,
  3. Widget? iconOverride,
  4. TextEditingController? textEditingController,
  5. required FocusNode? focusNode,
  6. Widget? unfocused,
  7. required bool showExpand,
  8. 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);