DialogTextField constructor

const DialogTextField({
  1. String? initialText,
  2. String? hintText,
  3. bool obscureText = false,
  4. FormFieldValidator<String>? validator,
  5. TextInputType? keyboardType,
  6. TextCapitalization textCapitalization = TextCapitalization.none,
  7. String? prefixText,
  8. String? suffixText,
  9. int? minLines,
  10. int maxLines = 1,
  11. int? maxLength,
  12. bool autocorrect = true,
  13. SpellCheckConfiguration? spellCheckConfiguration,
})

Implementation

const DialogTextField({
  this.initialText,
  this.hintText,
  this.obscureText = false,
  this.validator,
  this.keyboardType,
  this.textCapitalization = TextCapitalization.none,
  this.prefixText,
  this.suffixText,
  this.minLines,
  this.maxLines = 1,
  this.maxLength,
  this.autocorrect = true,
  this.spellCheckConfiguration,
});