updateConfiguration static method

Future<void> updateConfiguration(
  1. Map<String, Object> configMap
)

Update specific configuration parameters

Update the current SDK configuration with specific key/value pairs. Keys not found in the current configuration are added.

Using null values is allowed and effectively removes the configuration parameter from the current configuration.

@param {Map<String, Object>} configMap configuration key/value pairs to be updated or added. A value of null has no effect.

Implementation

static Future<void> updateConfiguration(Map<String, Object> configMap) =>
    _channel.invokeMethod('updateConfiguration', configMap);