InputTextAreaWidget constructor

const InputTextAreaWidget({
  1. Key? key,
  2. String label = '',
  3. required String formControlName,
  4. Map<String, String Function(Object)>? validationMessages,
  5. bool? isDarker,
  6. int? maxLength,
  7. void onFocusChange(
    1. FocusNode
    )?,
  8. int maxLines = 1,
  9. bool? autofocus = false,
  10. List<TextInputFormatter>? mask,
  11. double? labelFontSize,
  12. bool? labelAlignLabelWithHint,
  13. 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);