RoundedBorderedTextField constructor

RoundedBorderedTextField({
  1. Key? key,
  2. required String hintText,
  3. TextInputType? keyboardType,
  4. bool obscureText = false,
  5. String? validator(
    1. String?
    )?,
  6. Widget? icon,
  7. TextEditingController? controller,
  8. bool isPass = false,
})

Implementation

RoundedBorderedTextField({
  super.key,
  required this.hintText,
  this.keyboardType,
  this.obscureText = false,
  this.validator,
  this.icon,
  this.controller,
  this.isPass = false,
});