operator []= method

  1. @override
void operator []=(
  1. String key,
  2. String? value
)
override

Sets the value corresponding to a configuration key.

Implementation

@override
void operator []=(String key, String? value) {
  _root[ConfigurationPath.combine([path, key])] = value;
}