chatListWidget method
Implementation
ChatWidgetBundle chatListWidget(
BuildContext context, {
required Function(Chat chat) onPressed,
List<Chat>? cachedChatList,
Function(List<Chat> updatedChat)? onChatUpdated,
}) {
return widgetChatList(
context,
service,
onPressed: onPressed,
cachedChatList: cachedChatList,
onChatUpdated: onChatUpdated,
);
}