getPath method

List<String> getPath(
  1. String key
)

Get the storage path for a setting.

Implementation

List<String> getPath(String key) {
  return _settings[key]?.getPath(key) ?? key.split('.');
}