EncryptedFileEmpty.deserialize constructor

EncryptedFileEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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