get method

dynamic get(
  1. String key
)

Retrieves a configuration value by its key.

  • Parameters:

    • key: The key of the configuration value to retrieve.
  • Returns: The value associated with the key, or null if the key does not exist.

Implementation

dynamic get(String key) {
  return _settings[key];
}