CustomChatInput constructor

const CustomChatInput({
  1. required String roomId,
  2. void onTyping(
    1. bool
    )?,
  3. dynamic key,
})

Implementation

const CustomChatInput({
  required this.roomId,
  this.onTyping,
  super.key,
});