CustomMultilineInputText constructor
const
CustomMultilineInputText({})
Implementation
const CustomMultilineInputText({
super.key,
super.controller,
super.readOnly,
String? hint,
bool? filled,
Color? fillColor,
super.focusNode,
super.borderColor = null,
Widget? prefixIcon, // ✅ optional
double super.height = 120,
super.onChanged,
super.validator,
}) : super(
hintText: hint,
maxLines: 5,
keyBoardType: TextInputType.multiline,
prefixWidget: prefixIcon,
filled: filled,
fillColor: fillColor,
);