InputEncryptedFileEmpty.deserialize constructor

InputEncryptedFileEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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