runCommand top-level property

FigSubcommand runCommand
final

Implementation

final FigSubcommand runCommand = FigSubcommand(
  name: ['run'],
  description:
      'Runs your project on all connected devices or in native emulators for the selected platform',
  subcommands: [
    FigSubcommand(
      name: ['android'],
      description: 'The latest android platform',
      options: [...runBothOptions, ...runAndroidOptions],
      priority: 90,
    ),
    FigSubcommand(
      name: ['ios'],
      description: 'The latest ios platform',
      options: [...runBothOptions, ...runIosOptions],
      priority: 90,
    ),
  ],
  options: [...runBothOptions, helpOption('run')],
);