isVSCodeIde function

bool isVSCodeIde(
  1. IdeType? ide
)

Check if an IDE type is a VSCode variant.

Implementation

bool isVSCodeIde(IdeType? ide) {
  if (ide == null) return false;
  final config = supportedIdeConfigs[ide];
  return config != null && config.ideKind == IdeKind.vscode;
}