ChatList constructor
const
ChatList({
- Key? key,
- Widget? bottomWidget,
- required BubbleRtlAlignment bubbleRtlAlignment,
- bool? isLastPage,
- required Widget itemBuilder(),
- required List<
Object> items, - ScrollViewKeyboardDismissBehavior keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
- Future<
void> onEndReached()?, - double? onEndReachedThreshold,
- required ScrollController scrollController,
- ScrollPhysics? scrollPhysics,
- TypingIndicatorOptions? typingIndicatorOptions,
- required bool useTopSafeAreaInset,
Creates a chat list widget.
Implementation
const ChatList({
super.key,
this.bottomWidget,
required this.bubbleRtlAlignment,
this.isLastPage,
required this.itemBuilder,
required this.items,
this.keyboardDismissBehavior = ScrollViewKeyboardDismissBehavior.manual,
this.onEndReached,
this.onEndReachedThreshold,
required this.scrollController,
this.scrollPhysics,
this.typingIndicatorOptions,
required this.useTopSafeAreaInset,
});