InputDocumentEmpty.deserialize constructor

InputDocumentEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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