BasicInputPassword constructor

const BasicInputPassword({
  1. Key? key,
  2. String? name,
  3. Color? iconPasswordColor,
  4. double? iconPasswordSize,
  5. BasicInputSize? size,
  6. double? width,
  7. String? initialValue,
  8. TextEditingController? controller,
  9. FocusNode? focusNode,
  10. TextStyle? textStyle,
  11. TextAlign textAlign = TextAlign.start,
  12. TextAlignVertical? textAlignVertical,
  13. TextInputAction? textInputAction,
  14. TextInputType? keyboardType,
  15. int? maxLines,
  16. int? minLines,
  17. int? maxLength,
  18. bool enabled = true,
  19. Color? cursorColor,
  20. AutovalidateMode? autoValidateMode,
  21. FormFieldValidator<String>? validator,
  22. List<TextInputFormatter>? inputFormatters,
  23. ValueTransformer<String?>? valueTransformer,
  24. ValueChanged<String?>? onChanged,
  25. GestureTapCallback? onTap,
  26. VoidCallback? onEditingComplete,
  27. FormFieldSetter? onSaved,
  28. bool? isDense,
  29. bool? filled,
  30. Widget? prefixIcon,
  31. Widget? suffixIcon,
  32. EdgeInsets? contentPadding,
  33. InputBorder? focusedBorder,
  34. InputBorder? enabledBorder,
  35. InputBorder? disabledBorder,
  36. InputBorder? errorBorder,
  37. InputBorder? focusedErrorBorder,
  38. Color? fillColor,
  39. Color? hoverColor,
  40. String? labelText,
  41. TextStyle? labelStyle,
  42. TextStyle? floatingLabelStyle,
  43. FloatingLabelBehavior? floatingLabelBehavior,
  44. String? hintText,
  45. TextStyle? hintStyle,
  46. String? errorText,
  47. int? errorMaxLines,
  48. TextStyle? errorStyle,
})

Implementation

const BasicInputPassword({
  Key? key,
  this.name,
  this.iconPasswordColor,
  this.iconPasswordSize,
  this.size,
  this.width,
  this.initialValue,
  this.controller,
  this.focusNode,
  this.textStyle,
  this.textAlign = TextAlign.start,
  this.textAlignVertical,
  this.textInputAction,
  this.keyboardType,
  this.maxLines,
  this.minLines,
  this.maxLength,
  this.enabled = true,
  this.cursorColor,
  this.autoValidateMode,
  this.validator,
  this.inputFormatters,
  this.valueTransformer,
  this.onChanged,
  this.onTap,
  this.onEditingComplete,
  this.onSaved,
  this.isDense,
  this.filled,
  this.prefixIcon,
  this.suffixIcon,
  this.contentPadding,
  this.focusedBorder,
  this.enabledBorder,
  this.disabledBorder,
  this.errorBorder,
  this.focusedErrorBorder,
  this.fillColor,
  this.hoverColor,
  this.labelText,
  this.labelStyle,
  this.floatingLabelStyle,
  this.floatingLabelBehavior,
  this.hintText,
  this.hintStyle,
  this.errorText,
  this.errorMaxLines,
  this.errorStyle,
}) : super(key: key);