Is there a way to list the parameters of a class? For example, use the dir function to list all parameters of the ttk.Button class, eg (dir(Button) result: text, command, etc)
Using dir(ttk.Button) displays the class parameters. I wanted the constructor parameters.
The function would have to return these parameters. In this image the parameters are being displayed by vscode.
