RCKChatPageConfig constructor

RCKChatPageConfig({
  1. RCKChatAppBarConfig? appBarConfig,
  2. RCKBubbleConfig? bubbleConfig,
  3. RCKChatBackgroundConfig? backgroundConfig,
  4. RCKMessageInputConfig? inputConfig,
  5. bool useDefaultAppBarLeading = true,
})

Implementation

RCKChatPageConfig({
  RCKChatAppBarConfig? appBarConfig,
  RCKBubbleConfig? bubbleConfig,
  RCKChatBackgroundConfig? backgroundConfig,
  RCKMessageInputConfig? inputConfig,
  this.useDefaultAppBarLeading = true,
})  : appBarConfig = appBarConfig ?? RCKChatAppBarConfig(),
      backgroundConfig = backgroundConfig ?? RCKChatBackgroundConfig(),
      bubbleConfig = bubbleConfig ?? RCKBubbleConfig(),
      inputConfig = inputConfig ?? RCKMessageInputConfig();