PrivacyKeyBirthday.deserialize constructor

PrivacyKeyBirthday.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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