getSource method
Return the ConfigSource for a specific key within a scope.
Implementation
ConfigSource? getSource(
String key, {
ConfigScope scope = ConfigScope.global,
}) {
return _sources[scope]?[key];
}
Return the ConfigSource for a specific key within a scope.
ConfigSource? getSource(
String key, {
ConfigScope scope = ConfigScope.global,
}) {
return _sources[scope]?[key];
}