PrivacyKeyForwards.deserialize constructor

PrivacyKeyForwards.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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