SecureInputField constructor
const
SecureInputField({
- Key? key,
- required TextEditingController controller,
- bool obscureText = false,
- String? validator()?,
- bool preventScreenshot = false,
- bool preventPaste = false,
- InputDecoration? decoration,
- 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,
});