SecureInputField constructor

const SecureInputField({
  1. Key? key,
  2. required TextEditingController controller,
  3. bool obscureText = false,
  4. String? validator(
    1. String?
    )?,
  5. bool preventScreenshot = false,
  6. bool preventPaste = false,
  7. InputDecoration? decoration,
  8. TextInputType keyboardType = TextInputType.text,
})

Implementation

const SecureInputField({
  super.key,
  required this.controller,
  this.obscureText = false,
  this.validator,
  this.preventScreenshot = false,
  this.preventPaste = false,
  this.decoration,
  this.keyboardType = TextInputType.text,
});