in frontend/frontend-flutter/lib/screens/bot_chat_view.dart [19:56]
void initState() {
super.initState();
currentUser = ChatUser(
id: '0',
name: 'User',
profilePhoto: "https://raw.githubusercontent.com/SimformSolutionsPvtLtd/flutter_showcaseview/master/example/assets/simform.png",
);
bot = ChatUser(
id: '1',
name: 'Bot',
profilePhoto: "https://raw.githubusercontent.com/SimformSolutionsPvtLtd/flutter_showcaseview/master/example/assets/simform.png",
);
_chatController = ChatController(
initialMessageList: [
Message(
id: '0',
message: "Hi Bot!",
createdAt: DateTime.now(),
sendBy: '0', // userId of who sends the message
),
Message(
id: '1',
message: "Hi!",
createdAt: DateTime.now(),
sendBy: '1',
),
],
scrollController: ScrollController(),
chatUsers: [
currentUser!,
bot!,
],
);
}