Input constructor
const
Input({
- Key? key,
- bool? isAttachmentUploading,
- VoidCallback? onAttachmentPressed,
- required void onSendPressed(
- PartialText
- InputOptions options = const InputOptions(),
Creates Input widget.
Implementation
const Input({
super.key,
this.isAttachmentUploading,
this.onAttachmentPressed,
required this.onSendPressed,
this.options = const InputOptions(),
});