help property

String get help

Implementation

String get help {
  switch (this) {
    case ClonifyCommandFlags.skipAll:
      return 'Skip all user prompts during command execution';
    case ClonifyCommandFlags.version:
      return 'Display the version of the clonify tool';
    case ClonifyCommandFlags.autoUpdate:
      return 'Automatically update project dependencies';
    case ClonifyCommandFlags.isDebug:
      return 'Run the command in debug mode for detailed output';
    case ClonifyCommandFlags.skipFirebaseConfigure:
      return 'Skip Firebase configuration during setup';
    case ClonifyCommandFlags.skipPubUpdate:
      return 'Skip updating the pubspec.yaml file';
    case ClonifyCommandFlags.skipVersionUpdate:
      return 'Skip updating the version in pubspec.yaml';
    case ClonifyCommandFlags.buildAab:
      return 'Build the Android App Bundle (AAB) for the project';
    case ClonifyCommandFlags.buildApk:
      return 'Build the Android APK for the project';
    case ClonifyCommandFlags.buildIpa:
      return 'Build the iOS IPA for the project';
    case ClonifyCommandFlags.skipBuildCheck:
      return 'Skip build checks for Android and iOS platforms';
    case ClonifyCommandFlags.skipAndroidUploadCheck:
      return 'Skip upload checks for Android apps';
    case ClonifyCommandFlags.skipIOSUploadCheck:
      return 'Skip upload checks for iOS apps';
  }
}