patchbayNavigationCurrentCommandDescriptor top-level constant

PatchbayCommandDescriptor const patchbayNavigationCurrentCommandDescriptor

Implementation

const PatchbayCommandDescriptor patchbayNavigationCurrentCommandDescriptor =
    PatchbayCommandDescriptor(
      name: 'navigation.current',
      summary: 'Read the current settled consumer destination.',
      plane: PatchbayPlane.flutterUi,
      mode: PatchbayCommandMode.readOnly,
      sideEffect: PatchbaySideEffect.none,
      factSources: <PatchbayFactSource>{PatchbayFactSource.appRecorded},
      cliSyntax: <PatchbayCliSyntax>[
        PatchbayCliSyntax(
          id: 'navigationCurrent',
          path: <String>['navigation', 'current'],
          summary: 'Read the current destination and revision.',
        ),
      ],
    );