ChatPhotoEmpty.deserialize constructor

ChatPhotoEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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