What are the configuration settings for the ASAP Flutter SDK?

What are the configuration settings for the ASAP Flutter SDK?

ASAP configuration 

The ASAP SDK offers methods to show or hide specific features.
For example, you can hide the Knowledge Base (KB) module by using the following method:
  1. import 'package:zohodesk_portal_configuration/zohodesk_portal_configuration.dart';
  2. import 'package:zohodesk_portal_configuration/data/zdp_configuration.dart';
  3.  
  4. void hideKnowledgeBase(){
  5.   ZDPConfiguration config = ZDPConfiguration();
  6.   config.isKBEnabled = false;
  7.   ZohodeskPortalConfiguration.setConfiguration(config);
  8. }
Info
Here, 
  1. config.isKBEnabled = false; disables the knowledge base module
  2. config.isKBEnabled = true; enables the knowledge base module
Alert
The status of modules can be set to either enabled or disabled. However, this action is only possible if the modules are enabled in the ASAP web configuration settings. 
To show or hide specific modules, options, or buttons, use the methods listed below:

Method name
Functional description
Enabled/disbaled Default status
isKBEnabled
To hide the Knowledge Base (KB) module
According to the portal configuration
isCommunityEnabled
To hide the Community module
According to the portal configuration
isMyTicketsEnabled
To hide My Tickets module
According to the portal configuration
isSubmitTicketEnabled
To hide Add Ticket module
According to the portal configuration
isAddTopicEnabled
To hide Add Topic module
According to the portal configuration
isGCEnabled
To hide the GC (Guided Conversations) module
According to the portal configuration
isAnswerBotEnabled
To hide the Answer Bot module
According to the portal configuration
isBMEnabled
To hide the BM (Business Messaging) module
According to the portal configuration
isSiqEnabled
To hide the SalesIQ chat module
According to the portal configuration
isSideMenuEnabled
To hide the Side Menu option
Enabled
isPoweredByFooterEnabled
To hide the Bottom Branding Label (Powered by ASAP) 
Enabled
isLangChooserEnabled
To hide the Language selector option
Enabled
isAttachmentDownloadEnabled 
To disable the Attachments Download option
Enabled
isAttachmentUploadEnabled
To disable the Attachments Upload option
Enabled
isGlobalSearchEnabled
To disable the Search option
Enabled
isModuleBasedSearchEnabledTo disable the Global Search option. 
(When disabled, the user can't see additional module results in search)
Enabled
disableScreenShot
To disable the Screenshot taking option
Disabled
disableCutCopy
To disable the Text Cut/Copy/Paste option
Disabled