MessageActionChatDeletePhoto.deserialize constructor

MessageActionChatDeletePhoto.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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