UpdateChatLastMessage constructor
const
UpdateChatLastMessage({
- required int chatId,
- Message? lastMessage,
- required List<
ChatPosition> positions, - dynamic extra,
- int? clientId,
The last message of a chat was changed. If last_message is null, then the last message in the chat became unknown. Some new unknown messages might be added to the chat in this case
Implementation
const UpdateChatLastMessage({
required this.chatId,
this.lastMessage,
required this.positions,
this.extra,
this.clientId,
});