DeployWetRunOption constructor

const DeployWetRunOption({
  1. OptionGroup? group,
})

Implementation

const DeployWetRunOption({super.group})
  : super(
      argName: 'wet-run',
      argAliases: const ['dry-run'],
      helpText:
          'Perform every step except the deployment, '
          'leaving the hosted application untouched. '
          'Local files may still be modified.',
      defaultsTo: false,
      negatable: false,
    );