logInfo static method

void logInfo(
  1. String message, {
  2. bool loggerEnabled = true,
})

Implementation

static void logInfo(String message, {bool loggerEnabled = true}) {
  if (!loggerEnabled) {
    return;
  }
  _logger.info(message);
}