description property

String get description

Implementation

String get description {
  switch (this) {
    case ClonifyCommands.create:
      return 'Create a new Flutter project clone';
    case ClonifyCommands.init:
      return 'Initialize a Flutter project clone';
    case ClonifyCommands.which:
      return 'Show the current client ID';
    case ClonifyCommands.configure:
      return 'Configure the app for the specified client ID';
    case ClonifyCommands.build:
      return 'Build the Flutter project clone';
    case ClonifyCommands.clean:
      return 'Clean the Flutter project clone';
    case ClonifyCommands.upload:
      return 'Upload the Flutter project clone';
    case ClonifyCommands.list:
      return 'List all available Flutter project clones';
  }
}