PrivacyValueAllowPremium.deserialize constructor

PrivacyValueAllowPremium.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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