ChatList constructor

const ChatList({
  1. Key? key,
  2. required ChatController chatController,
  3. EdgeInsetsGeometry? padding,
  4. OnBubbleClick? onBubbleTap,
  5. OnBubbleClick? onBubbleLongPress,
  6. MessageWidgetBuilder? messageWidget,
  7. Callback? onCallBack,
  8. ValueChanged<String>? onFavorite,
  9. MessageCallBack? onDelete,
  10. MessageCallBack? onShare,
})

Implementation

const ChatList(
    {super.key,
    required this.chatController,
    this.padding,
    this.onBubbleTap,
    this.onBubbleLongPress,
    this.messageWidget,
    this.onCallBack,
    this.onFavorite,
    this.onDelete,
    this.onShare});