ChatList constructor

const ChatList({
  1. Key? key,
  2. required ChatController chatController,
  3. EdgeInsetsGeometry? padding,
  4. OnBubbleClick? onBubbleTap,
  5. OnBubbleClick? onBubbleLongPress,
})

Implementation

const ChatList({
  super.key,
  required this.chatController,
  this.padding,
  this.onBubbleTap,
  this.onBubbleLongPress,
});