PasswordTextForm constructor

const PasswordTextForm({
  1. Key? key,
  2. double border = 20,
  3. Color boxFillColor = const Color.fromARGB(255, 217, 214, 214),
  4. String hinText = 'Password',
  5. TextEditingController? controller,
  6. String? validate(
    1. String? val
    )?,
  7. TextInputType? keyBoardType,
  8. bool autoFocus = false,
  9. bool cursorOpacityAanimation = true,
  10. double cursorHight = 30,
  11. double cursorWidth = 2,
  12. double cursorRadius = 20,
  13. Color cursorColor = Colors.grey,
  14. InputDecoration? inputDecoration,
})

Implementation

const PasswordTextForm({
  super.key,
  this.border = 20,
  this.boxFillColor = const Color.fromARGB(255, 217, 214, 214),
  this.hinText = 'Password',
  this.controller,
  this.validate,
  this.keyBoardType,
  this.autoFocus = false,
  this.cursorOpacityAanimation = true,
  this.cursorHight = 30,
  this.cursorWidth = 2,
  this.cursorRadius = 20,
  this.cursorColor = Colors.grey,
  this.inputDecoration,
});