negate property
Whether to negate the profile expression
Example:
@Component()
@Profile(['!production']) // Not in production
class DebugService {
// Active in all profiles except production
}
Implementation
final bool negate;
Whether to negate the profile expression
@Component()
@Profile(['!production']) // Not in production
class DebugService {
// Active in all profiles except production
}
final bool negate;