ForumTopicDeleted.deserialize constructor

ForumTopicDeleted.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory ForumTopicDeleted.deserialize(BinaryReader reader) {
  // Read [ForumTopicDeleted] fields.
  final id = reader.readInt32();

  // Construct [ForumTopicDeleted] object.
  final returnValue = ForumTopicDeleted(
    id: id,
  );

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