setAdvancedConfig static method

dynamic setAdvancedConfig(
  1. String key,
  2. String value
)

Set zim advanced configuration. When you need to customize the set advanced configurations, you need to call this function. It must be set before calling create to take effect. If it is set after create, it will take effect at the next create.

Implementation

static setAdvancedConfig(String key,String value) async {
  return await ZIMManager.setAdvancedConfig(key, value);
}