TodayInput constructor
const
TodayInput({
- Key? key,
- String? uuid,
- String value = '',
- String? placeholder,
- String? label,
- String? optionalLabel,
- String? description,
- TodayLink? link,
- bool error = false,
- String? errorMessage,
- bool disabled = false,
- dynamic onSubmitted()?,
- dynamic onChanged()?,
- dynamic onTapOutside()?,
- TodayInputType type = TodayInputType.text,
- TodayInputPrefix? prefix,
- TodaySvgIcon? customPrefix,
- TodayInputSuffix? suffix,
- int? limit,
- bool innerInput = false,
- bool autofocus = false,
- bool transparent = false,
- bool overwriteValue = false,
- bool small = false,
- 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,
});