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