supports method
Implementation
bool supports(String environmentStrategy) {
final normalized = environmentStrategy.trim().toLowerCase();
return normalized == 'development only' ||
normalized == 'single environment setup' ||
normalized == 'dev + production' ||
normalized == 'dev + stage + production' ||
normalized == 'environment configuration setup' ||
normalized == 'environment configuration strategy' ||
normalized == 'custom environment';
}