InputPrivacyValueAllowAll.deserialize constructor

InputPrivacyValueAllowAll.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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