platformSourceKinds property

Set<String> get platformSourceKinds

Source kinds that resolve to platform-channel fetchers.

Implementation

Set<String> get platformSourceKinds {
  return Set<String>.unmodifiable(
    _fetcherRoutes.entries
        .where(
          (MapEntry<String, PixaFetcherDescriptor> entry) =>
              entry.value.executionKind == PixaPluginExecutionKind.platform,
        )
        .map((MapEntry<String, PixaFetcherDescriptor> entry) => entry.key),
  );
}