set static method

void set(
  1. String key,
  2. String? value
)

Implementation

static void set(String key, String? value) {
  _getMutableConfigurationProvider().set(key, value);
}