TextFieldStyle constructor

const TextFieldStyle({
  1. bool? obscureText,
  2. TextInputType? keyboardType,
  3. int? maxLines,
  4. int? minLines,
  5. int? maxLength,
  6. TextAlign? textAlign,
  7. TextStyle? textStyle,
  8. TextCapitalization? textCapitalization,
  9. bool? enabled,
  10. bool? readOnly,
  11. bool? autofocus,
  12. List<TextInputFormatter>? inputFormatters,
})

Implementation

const TextFieldStyle({
  this.obscureText,
  this.keyboardType,
  this.maxLines,
  this.minLines,
  this.maxLength,
  this.textAlign,
  this.textStyle,
  this.textCapitalization,
  this.enabled,
  this.readOnly,
  this.autofocus,
  this.inputFormatters,
});