BotCommandScopeUsers.deserialize constructor

BotCommandScopeUsers.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

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

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