PrivacyValueAllowAll.deserialize constructor

PrivacyValueAllowAll.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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