Input constructor

const Input({
  1. Key? key,
  2. bool? isAttachmentUploading,
  3. VoidCallback? onAttachmentPressed,
  4. required void onSendPressed(
    1. PartialText
    ),
  5. InputOptions options = const InputOptions(),
})

Creates Input widget.

Implementation

const Input({
  super.key,
  this.isAttachmentUploading,
  this.onAttachmentPressed,
  required this.onSendPressed,
  this.options = const InputOptions(),
});