info static method

void info(
  1. dynamic text
)

log the text using info color (lightblue)

DoxLogger.info('using dox is fun');

Implementation

static void info(dynamic text) {
  print('\x1B[36m$text\x1B[0m');
}