supports method

bool supports(
  1. String environmentStrategy
)

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';
}