TodayInput constructor

const TodayInput({
  1. Key? key,
  2. String? uuid,
  3. String value = '',
  4. String? placeholder,
  5. String? label,
  6. String? optionalLabel,
  7. String? description,
  8. TodayLink? link,
  9. bool error = false,
  10. String? errorMessage,
  11. bool disabled = false,
  12. dynamic onSubmitted(
    1. String
    )?,
  13. dynamic onChanged(
    1. String
    )?,
  14. dynamic onTapOutside(
    1. String
    )?,
  15. TodayInputType type = TodayInputType.text,
  16. TodayInputPrefix? prefix,
  17. TodaySvgIcon? customPrefix,
  18. TodayInputSuffix? suffix,
  19. int? limit,
  20. bool innerInput = false,
  21. bool autofocus = false,
  22. bool transparent = false,
  23. bool overwriteValue = false,
  24. bool small = false,
  25. Iterable<String>? autofillHints,
})

Implementation

const TodayInput({
  super.key,
  this.uuid,
  this.value = '',
  this.placeholder,
  this.label,
  this.optionalLabel,
  this.description,
  this.link,
  this.error = false,
  this.errorMessage,
  this.disabled = false,
  this.onSubmitted,
  this.onChanged,
  this.onTapOutside,
  this.type = TodayInputType.text,
  this.prefix,
  this.customPrefix,
  this.suffix,
  this.limit,
  this.innerInput = false,
  this.autofocus = false,
  this.transparent = false,
  this.overwriteValue = false,
  this.small = false,
  this.autofillHints,
});