loadAllMetadata method

Future<MetadataIndex> loadAllMetadata({
  1. WindowsMetadataVersions? versions,
})

Loads WDK, Win32, and WinRT metadata into a MetadataIndex.

Versions can be specified individually through versions. If omitted, the latest versions will be automatically resolved.

Implementation

Future<MetadataIndex> loadAllMetadata({WindowsMetadataVersions? versions}) =>
    loadMultipleMetadata(
      packages: WindowsMetadataPackage.values,
      versions: versions,
    );