ChatInput constructor

const ChatInput({
  1. Key? key,
  2. required dynamic onSend(
    1. String
    ),
  3. int maxBytes = 140,
})

Implementation

const ChatInput({
  super.key,
  required this.onSend,
  this.maxBytes = 140,
});