InputChatPhotoEmpty.deserialize constructor

InputChatPhotoEmpty.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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