ChannelParticipantsBots.deserialize constructor

ChannelParticipantsBots.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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