MessageComposer constructor

const MessageComposer({
  1. Key? key,
  2. required dynamic onSend(
    1. String
    ),
  3. required SwiftChatTheme theme,
  4. VoidCallback? onAttachFile,
})

Implementation

const MessageComposer({
  super.key,
  required this.onSend,
  required this.theme,
  this.onAttachFile,
});