InputUserEmpty.deserialize constructor

InputUserEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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