MessagesGetChats.deserialize constructor
MessagesGetChats.deserialize(
- BinaryReader reader
Deserialize.
Implementation
factory MessagesGetChats.deserialize(BinaryReader reader) {
// Read [MessagesGetChats] fields.
final id = reader.readVectorInt64();
// Construct [MessagesGetChats] object.
final returnValue = MessagesGetChats(id: id.items);
// Now return the deserialized [MessagesGetChats].
return returnValue;
}