allConfigKeys property

List<String> get allConfigKeys
inherited

Configuration lookup keys in order of precedence.

Includes configKey if set, followed by configKeys if set.

Implementation

List<String> get allConfigKeys {
  final key = configKey;
  final keys = configKeys;
  return [if (key != null) key, ...?keys];
}