ChatInputSection constructor

const ChatInputSection({
  1. Key? key,
  2. required dynamic onMessageSend(
    1. String
    ),
  3. InputSectionStyle style = const InputSectionStyle(),
})

Implementation

const ChatInputSection({
  Key? key,
  required this.onMessageSend,
  this.style = const InputSectionStyle(),
}) : super(key: key);