showBanner static method
void
showBanner()
Show a stylized welcome banner
Implementation
static void showBanner() {
print('');
print(chalk.blue.bold('''
____ _ _
/ ___| | __ _ _ _ __| | ___
| | | |/ _` | | | |/ _` |/ _ \\
| |___| | (_| | |_| | (_| | __/
\\____|_|\\__,_|\\__,_|\\__,_|\\___|
Dart/Flutter Toolkit Setup
'''));
print(chalk.gray('═' * 50));
print('');
}