Messages
Message API can be used to show different types of messages with relevant background color. By calling any of the API, a toast notification will be displayed for 5 seconds in the top-right corner of the wizard.
showSuccessMessage
Shows success message as flash notification with green background.
appStudioWizard.showSuccessMessage(message);
showErrorMessage
Shows error message as flash notification with red background.appStudioWizard.showErrorMessage(message);
showWarningMessage
Shows warning message as flash notification with orange background.appStudioWizard.showWarningMessage(message);
showInfoMessage
Shows info message as flash notification with blue background.
appStudioWizard.showInfoMessage(message);