String getScopeKey(List<String> scope) { var key = '_default_'; var sortedScopes = getSortedScopes(scope); if (sortedScopes.isNotEmpty) { key = sortedScopes.join('__'); } return key; }