updateChatPosition property
The position of a chat in a chat list has changed. An updateChatLastMessage or updateChatDraftMessage update might be sent instead of the update
Implementation
UpdateChatPosition? get updateChatPosition {
if (this is UpdateChatPosition) {
return this as UpdateChatPosition;
}
return null;
}