PrivacyKeyPhoneP2P.deserialize constructor

PrivacyKeyPhoneP2P.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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