PrivacyKeyPhoneCall.deserialize constructor

PrivacyKeyPhoneCall.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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