InputPasswordWidget constructor

const InputPasswordWidget({
  1. Key? key,
  2. String label = '',
  3. required String formControlName,
  4. Map<String, String Function(Object)>? validationMessages,
  5. bool? isDarker,
  6. int? maxLength,
  7. Icon? prefixIcon,
  8. void onFocusChange(
    1. FocusNode
    )?,
  9. void onSubmit()?,
  10. bool? showPassword = true,
})

Implementation

const InputPasswordWidget(
    {Key? key,
    this.label = '',
    required this.formControlName,
    this.validationMessages,
    this.isDarker,
    this.maxLength,
    this.prefixIcon,
    this.onFocusChange,
    this.onSubmit,
    this.showPassword = true})
    : super(key: key);