ZetaPasswordInput constructor

const ZetaPasswordInput(
  1. {ZetaWidgetSize size = ZetaWidgetSize.large,
  2. String? validator(
    1. String?
    )?,
  3. void onChanged(
    1. String
    )?,
  4. bool obscureText = true,
  5. bool enabled = true,
  6. TextEditingController? controller,
  7. String? hintText,
  8. String? label,
  9. String? footerText,
  10. IconData? footerIcon,
  11. bool rounded = false,
  12. Key? key}
)

Constructs ZetaPasswordInput

Implementation

const ZetaPasswordInput({
  this.size = ZetaWidgetSize.large,
  this.validator,
  this.onChanged,
  this.obscureText = true,
  this.enabled = true,
  this.controller,
  this.hintText,
  this.label,
  this.footerText,
  this.footerIcon,
  this.rounded = false,
  super.key,
});