ChatInvitePublicJoinRequests.deserialize constructor

ChatInvitePublicJoinRequests.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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