ChannelParticipantsSearch.deserialize constructor

ChannelParticipantsSearch.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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

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