getConfigEntry method

String? getConfigEntry(
  1. String key
)

Returns the configuration Entry for key.

Implementation

String? getConfigEntry(String key) {
  return _configBox!.get(key);
}