divider static method

void divider({
  1. String title = '',
})

Implementation

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