ChannelParticipantsContacts.deserialize constructor

ChannelParticipantsContacts.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory ChannelParticipantsContacts.deserialize(BinaryReader reader) {
  // Read [ChannelParticipantsContacts] fields.
  final q = reader.readString();

  // Construct [ChannelParticipantsContacts] object.
  final returnValue = ChannelParticipantsContacts(
    q: q,
  );

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