BottomInputField constructor

const BottomInputField({
  1. Key? key,
  2. required AutoScrollController scrollController,
  3. required NIMConversationType conversationType,
  4. required String conversationId,
  5. String? hint,
  6. ChatUIConfig? chatUIConfig,
})

Implementation

const BottomInputField({
  Key? key,
  required this.scrollController,
  required this.conversationType,
  required this.conversationId,
  this.hint,
  this.chatUIConfig,
}) : super(key: key);