PrivacyValueAllowBots.deserialize constructor

PrivacyValueAllowBots.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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