Input constructor

const Input({
  1. Key? key,
  2. bool? isAttachmentUploading,
  3. void onAttachmentPressed()?,
  4. required void onSendPressed(
    1. PartialText
    ),
  5. void onTextChanged(
    1. String
    )?,
})

Creates Input widget

Implementation

const Input({
  Key? key,
  this.isAttachmentUploading,
  this.onAttachmentPressed,
  required this.onSendPressed,
  this.onTextChanged,
}) : super(key: key);