success static method

void success(
  1. dynamic text
)

log the text using success color (green)

DoxLogger.info('success');

Implementation

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