InputPrivacyKeyForwards.deserialize constructor

InputPrivacyKeyForwards.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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