set method

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

Sets a configuration value for the specified key.

Implementation

@override
void set(String key, String? value) => _config?[key] = value;