AppChatMessageList constructor

const AppChatMessageList({
  1. required int itemCount,
  2. required IndexedWidgetBuilder itemBuilder,
  3. ScrollController? controller,
  4. double spacing = AppSpacings.s16,
  5. EdgeInsetsGeometry padding = EdgeInsets.zero,
  6. bool stickToBottom = true,
  7. bool autoScroll = true,
  8. Key? key,
})

Cria uma AppChatMessageList.

Implementation

const AppChatMessageList({
  required this.itemCount,
  required this.itemBuilder,
  this.controller,
  this.spacing = AppSpacings.s16,
  this.padding = EdgeInsets.zero,
  this.stickToBottom = true,
  this.autoScroll = true,
  super.key,
});