SendMessageParams constructor
const
SendMessageParams({
- required String conversationId,
- required String content,
- MessageType type = MessageType.text,
- String? replyToId,
- List<
PendingAttachment> ? attachments, - String? nonce,
- Map<
String, dynamic> ? extra,
Implementation
const SendMessageParams({
required this.conversationId,
required this.content,
this.type = MessageType.text,
this.replyToId,
this.attachments,
this.nonce,
this.extra,
});