BotCommandScopeChats.deserialize constructor

BotCommandScopeChats.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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