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