MessagesGetFactCheck.deserialize constructor
MessagesGetFactCheck.deserialize(
- BinaryReader reader
Deserialize.
Implementation
factory MessagesGetFactCheck.deserialize(BinaryReader reader) {
// Read [MessagesGetFactCheck] fields.
final peer = reader.readObject() as InputPeerBase;
final msgId = reader.readVectorInt32();
// Construct [MessagesGetFactCheck] object.
final returnValue = MessagesGetFactCheck(peer: peer, msgId: msgId.items);
// Now return the deserialized [MessagesGetFactCheck].
return returnValue;
}