printBanner static method

void printBanner()

Prints the Archit CLI banner to the console.

Implementation

static void printBanner() {
  print('');
  print(
      '$cyan$bold╔══════════════════════════════════════════════════╗$reset');
  print(
      '$cyan$bold║            🔨  Archit CLI  v0.0.1                ║$reset');
  print(
      '$cyan$bold║     Clean Architecture Scaffold Generator        ║$reset');
  print(
      '$cyan$bold╚══════════════════════════════════════════════════╝$reset');
  print('');
}