MessageFieldView constructor

const MessageFieldView({
  1. Key? key,
  2. MessageFieldController? controller,
  3. void onChanged()?,
  4. Future<void> onItemPressed(
    1. ChatItem item
    )?,
  5. Future<void> onAttachmentError(
    1. ChatItem
    )?,
  6. Key? fieldKey,
  7. Key? sendKey,
  8. bool canForward = false,
  9. bool canAttach = true,
  10. BoxConstraints? constraints,
})

Implementation

const MessageFieldView({
  super.key,
  this.controller,
  this.onChanged,
  this.onItemPressed,
  this.onAttachmentError,
  this.fieldKey,
  this.sendKey,
  this.canForward = false,
  this.canAttach = true,
  this.constraints,
});