CustomInputWithIcon constructor
const
CustomInputWithIcon({})
Implementation
const CustomInputWithIcon({
super.key,
super.controller,
required Widget icon,
String? hint,
String? label,
bool? filled,
Color? fillColor,
super.focusNode,
super.borderColor = null,
super.onChanged,
super.validator,
}) : super(
prefixWidget: icon,
hintText: hint,
labelText: label,
filled: filled,
fillColor: fillColor,
);