ChatMessageInputConfig constructor

const ChatMessageInputConfig({
  1. bool? isShowAudioRecorder,
  2. bool? isShowPhotoTaker,
  3. bool? isShowMore,
  4. bool? enableReadReceipt,
  5. bool? enableMention,
})

Implementation

const ChatMessageInputConfig({
  bool? isShowAudioRecorder,
  bool? isShowPhotoTaker,
  bool? isShowMore,
  bool? enableReadReceipt,
  bool? enableMention,
})  : _userIsShowAudioRecorder = isShowAudioRecorder,
      _userIsShowPhotoTaker = isShowPhotoTaker,
      _userIsShowMore = isShowMore,
      _userEnableReadReceipt = enableReadReceipt,
      _userEnableMention = enableMention;