showCreateCommand static method

Future<void> showCreateCommand()

Implementation

static Future<void> showCreateCommand() async {
  Console.writeLine(dcli.green('👾 Available Create commands:'));
  Console.writeLine(dcli.green('🔹 ${Constants.kCreateCommand} < ${Constants.kTemplateArgument} > - '
      'Creates a Flutter template project.'));
  Console.writeLine(dcli.green('🔹 ${Constants.kCreateCommand} < ${Constants.kKeyArgument} > - '
      'Generates a key and adds it to the project.'));
  Console.writeLine(dcli.green('🔹 ${Constants.kCreateCommand} < ${Constants.kFeatureArgument} > - '
      'Adds folder structure for feature.'));
  Console.writeLine(dcli.green('🔹 ${Constants.kCreateCommand} < ${Constants.kBlocArgument} > - '
      'Creates a bloc template (bloc, state, event).'));
  Console.writeLine(dcli.green('🔹 ${Constants.kCreateCommand} < ${Constants.kCubitArgument} > - '
      'Creates a cubit template. (cubit, state)'));
}