InputPhotoEmpty.deserialize constructor

InputPhotoEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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