StorageFilePartial.deserialize constructor

StorageFilePartial.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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