PrivacyValueDisallowAll.deserialize constructor

PrivacyValueDisallowAll.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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