PasswordShadInput constructor

const PasswordShadInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. required FocusNode focusNode,
  4. required PasswordInputMode mode,
  5. bool enabled = true,
  6. Widget? label,
  7. ValueChanged<String>? onChanged,
})

Implementation

const PasswordShadInput({
  super.key,
  required this.controller,
  required this.focusNode,
  required this.mode,
  this.enabled = true,
  this.label,
  this.onChanged,
});