header static method

void header(
  1. String title
)

Implementation

static void header(String title) {
  print('\n$magenta$bold==================================================');
  print('  $title');
  print('==================================================$reset\n');
}