ChannelParticipantsBanned.deserialize constructor

ChannelParticipantsBanned.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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

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