TextFieldPassword constructor

TextFieldPassword({
  1. @required String? label,
  2. String? helperHint,
  3. @required bool? enabled,
  4. ValueChanged<String>? onChanged,
  5. List<TextInputFormatter>? inputFormatters,
  6. TextInputType? keyboardType,
  7. AutovalidateMode? autovalidateMode,
  8. String? validator(
    1. String?
    )?,
  9. bool? enableSuggestions,
  10. @required bool? readOnly,
  11. TextEditingController? textCtrl,
})

Implementation

TextFieldPassword(
    {@required this.label,
    this.helperHint,
    @required this.enabled,
    this.onChanged,
    this.inputFormatters,
    this.keyboardType,
    this.autovalidateMode,
    this.validator,
    this.enableSuggestions,
    @required this.readOnly,
    this.textCtrl});