hasKey method

  1. @override
bool hasKey(
  1. String key
)
override

Checks if key exists in the current configuration.

Implementation

@override
bool hasKey(String key) {
  return _config.containsKey(key);
}