printTitle static method

dynamic printTitle()

Implementation

static printTitle() {
  String title = '''
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            ╔╦╗┌─┐┌┬┐┌─┐┬  ┬┌─┐┬ ┬
             ║ ├┤ │││├─┘│  │├┤ └┬┘
             ╩ └─┘┴ ┴┴  ┴─┘┴└   ┴
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ''';
  print(ColoredLog.getStylizedText(
    title,
    style: LogStyle.bold,
    color: LogColor.green,
  ));
}