FieldText constructor

const FieldText({
  1. String? label,
  2. bool? autocorrect,
  3. bool? autofocus,
  4. String? autofillHints,
  5. String? autovalidateMode,
  6. String? buildCounter,
  7. String? cursorColor,
  8. String? cursorRadius,
  9. String? cursorWidth,
  10. String? hint,
  11. bool? enabled,
  12. String? enableIMEPersonalizedLearning,
  13. bool? enableInteractiveSelection,
  14. bool? enableSuggestions,
  15. bool? expands,
  16. String? focusNode,
  17. dynamic initialValue,
  18. Map<String, dynamic>? inputDecoration,
  19. List<String>? inputFormatters,
  20. String? keyboardAppearance,
  21. String? keyboardType,
  22. int? maxLength,
  23. String? maxLengthEnforcement,
  24. int? maxLines,
  25. int? minLines,
  26. String? mouseCursor,
  27. bool? obscureText,
  28. String? obscuringCharacter,
  29. String? onChanged,
  30. bool? readOnly,
  31. String? scrollPadding,
  32. String? type,
  33. List<Map<FieldValidator, dynamic>>? validators,
  34. double? sequence,
})

Implementation

const FieldText(
    {this.label,
    this.autocorrect,
    this.autofocus,
    this.autofillHints,
    this.autovalidateMode,
    this.buildCounter,
    this.cursorColor,
    this.cursorRadius,
    this.cursorWidth,
    this.hint,
    this.enabled,
    this.enableIMEPersonalizedLearning,
    this.enableInteractiveSelection,
    this.enableSuggestions,
    this.expands,
    this.focusNode,
    this.initialValue,
    this.inputDecoration,
    this.inputFormatters,
    this.keyboardAppearance,
    this.keyboardType,
    this.maxLength,
    this.maxLengthEnforcement,
    this.maxLines,
    this.minLines,
    this.mouseCursor,
    this.obscureText,
    this.obscuringCharacter,
    this.onChanged,
    this.readOnly,
    this.scrollPadding,
    this.type,
    this.validators,
    this.sequence});