ChannelParticipantsRecent.deserialize constructor

ChannelParticipantsRecent.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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