User _user = User(
name: 'Kevin',
uid: 'UID233',
avatar: "https:__data-us.cometchat.io_assets_images_avatars_cometchat-uid-3.webp",
role: "test",
status: "online",
statusMessage: "This is now status"
);
StatusIndicatorUtils statusIndicatorUtils =StatusIndicatorUtils.getStatusIndicatorFromParams(
theme: cometChatTheme,
user: _user,
);
Color? backgroundColor = statusIndicatorUtils.statusIndicatorColor;
Widget? icon = statusIndicatorUtils.icon;
CometChatListItem(
avatarName: _user.name,
avatarURL: _user.avatar,
title: _user.name,
statusIndicatorColor: backgroundColor,
statusIndicatorIcon: icon
)