NiceChat constructor
- Key? key,
- required List<
NiceChatMessage> messages, - ValueChanged<
String> ? onSend, - String? title,
- String placeholder = 'Type a message...',
- bool showAvatar = true,
Implementation
const NiceChat({
super.key,
required this.messages,
this.onSend,
this.title,
this.placeholder = 'Type a message...',
this.showAvatar = true,
});