InputTextAreaWidget constructor
const
InputTextAreaWidget({
- Key? key,
- String label = '',
- required String formControlName,
- Map<
String, String Function(Object)> ? validationMessages, - bool? isDarker,
- int? maxLength,
- void onFocusChange()?,
- int maxLines = 1,
- bool? autofocus = false,
- List<
TextInputFormatter> ? mask, - double? labelFontSize,
- bool? labelAlignLabelWithHint,
- String? hintText,
Implementation
const InputTextAreaWidget(
{Key? key,
this.label = '',
required this.formControlName,
this.validationMessages,
this.isDarker,
this.maxLength,
this.onFocusChange,
this.maxLines = 1,
this.autofocus = false,
this.mask,
this.labelFontSize,
this.labelAlignLabelWithHint,
this.hintText})
: super(key: key);