patchbayNavigationCatalogCommandDescriptor top-level constant

PatchbayCommandDescriptor const patchbayNavigationCatalogCommandDescriptor

Implementation

const PatchbayCommandDescriptor patchbayNavigationCatalogCommandDescriptor =
    PatchbayCommandDescriptor(
      name: 'navigation.catalog',
      summary: 'Read the consumer destination catalog.',
      plane: PatchbayPlane.flutterUi,
      mode: PatchbayCommandMode.readOnly,
      sideEffect: PatchbaySideEffect.none,
      factSources: <PatchbayFactSource>{PatchbayFactSource.appRecorded},
      cliSyntax: <PatchbayCliSyntax>[
        PatchbayCliSyntax(
          id: 'navigationCatalog',
          path: <String>['navigation', 'catalog'],
          summary: 'List destinations exposed by the running App.',
        ),
      ],
    );