divider static method
Implementation
static void divider({String title = ''}) {
if (title.isNotEmpty) {
print('╔════════════════════════════════════════════════════════════════════════════════╗');
print('║${title.padLeft(77)}║');
print('╚════════════════════════════════════════════════════════════════════════════════╝');
} else {
print('────────────────────────────────────────────────────────────────────────────────');
}
}