I have the className in a string variable. I want to call the addField static method on the dynamic class.
const className = "CustomClient"; // comes from dropdown.
CustomClient.addField();
CustomClient is the name of the ES7 class. addField is static method. I want to call the addField dynamically. The class can be one of CustomClient, CustomContract or CustomUser.