PasswordInput constructor

const PasswordInput({
  1. Key? key,
  2. String? labelText,
  3. bool isRequired = false,
  4. bool enabled = true,
  5. FocusNode? focusNode,
  6. TextEditingController? controller,
  7. ValueChanged<String>? onChanged,
  8. Validator? validator,
  9. EdgeInsetsGeometry padding = const EdgeInsets.fromLTRB(8.0, 8.0, 8.0, 0.0),
})

Implementation

const PasswordInput({
  super.key,
  this.labelText,
  this.isRequired = false,
  this.enabled = true,
  this.focusNode,
  this.controller,
  this.onChanged,
  this.validator,
  this.padding = const EdgeInsets.fromLTRB(8.0, 8.0, 8.0, 0.0),
});