PrivacyKeyChatInvite.deserialize constructor

PrivacyKeyChatInvite.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory PrivacyKeyChatInvite.deserialize(BinaryReader reader) {
  // Construct [PrivacyKeyChatInvite] object.
  final returnValue = PrivacyKeyChatInvite();

  // Now return the deserialized [PrivacyKeyChatInvite].
  return returnValue;
}