ChatListView constructor

const ChatListView({
  1. Key? key,
  2. ChatListStyle style = const ChatListStyle(),
  3. ChatItemStyle? chatItemStyle,
  4. Duration animationDuration = const Duration(milliseconds: 300),
  5. required Iterable<ChatRoom> rooms,
  6. DialogsConfig? dialogsConfig,
})

Implementation

const ChatListView({
  Key? key,
  this.style = const ChatListStyle(),
  this.chatItemStyle,
  this.animationDuration = const Duration(milliseconds: 300),
  required this.rooms,
  this.dialogsConfig,
}) : super(key: key);