AppParameters

App Parameters

App Parameters are Flags, that can be set by calls from the menu. You can react oto these flags in app events to change your app behavior.

if(app.parameters.includes("myFlag")){
    console.log("Parameter is set");
}

Last updated