Input constructor

const Input({
  1. Key? key,
  2. required String hintText,
  3. required TextInputType inputType,
  4. required TextEditingController controller,
  5. required String id,
  6. bool secure = false,
  7. void onSubmitted(
    1. String
    )?,
})

Implementation

const Input({
  super.key,
  required this.hintText,
  required this.inputType,
  required this.controller,
  required this.id,
  this.secure = false,
  this.onSubmitted,
});