showWarning method

void showWarning(
  1. String archName,
  2. String suffix
)

Implementation

void showWarning(String archName, String suffix) {
  yellowLog(
      "[WARNING] Project is already initialized with ${archName.toUpperCase()} architecture pattern");
  print('''If you wanted to change architecture pattern;
 > Remove all folders and files from lib folder.
 > Remove 'easy_init_${archName.snakeCase}_$suffix' file from root folder.
 > Run 'easy init' command again''');
}