createInitTitle method
void
createInitTitle()
Prints a fancy ASCII art title with centered alignment
Implementation
void createInitTitle() {
List<String> title = [
"______ _ ",
"| ___ \\ | | ",
"| |_/ / __ ___ ___| |_ ___ ",
"| __/ '__/ _ \\ / __| __/ _ \\ ",
"| | | | | (_) | (__| || (_) | ",
"\\_| |_| \\___/ \\___|\\__\\___/ ",
"| | ",
"| | ___ __ _ __ _ ___ _ __ ",
"| |/ _ \\ / _` |/ _` |/ _ \\ '__| ",
"| | (_) | (_| | (_| | __/ | ",
"|_|\\___/ \\__, |\\__, |\\___|_| ",
" __/ | __/ | ",
" |___/ |___/ ",
];
for (var line in title) {
debugPrint(createLine(
primaryMessage: line, alignment: LoggerAlignmentState.center));
}
}