set static method

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

Sets a runtime override for a configuration key.

Implementation

static void set(String key, dynamic value) {
  _overrides[key] = value.toString();
}