ChatMessage constructor
const
ChatMessage({ - required MessageKey key,
- required String? msgid,
- required String sender,
- required MessageKind kind,
- required String text,
- required String? account,
- required bool historical,
- required bool own,
- required String? reply_to,
- required Map<String, List<String>> reactions,
- required LinkPreview? link_preview,
- required bool redacted,
})
Implementation
const ChatMessage({
required this.key,
required this.msgid,
required this.sender,
required this.kind,
required this.text,
required this.account,
required this.historical,
required this.own,
required this.reply_to,
required this.reactions,
required this.link_preview,
required this.redacted,
});