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