Input constructor
- Key? key,
- required String hintText,
- required TextInputType inputType,
- required TextEditingController controller,
- required String id,
- bool secure = false,
- void onSubmitted()?,
Implementation
const Input({
super.key,
required this.hintText,
required this.inputType,
required this.controller,
required this.id,
this.secure = false,
this.onSubmitted,
});