logInfo static method

void logInfo(
  1. String msg
)

Implementation

static void logInfo(String msg) {
  if (!_enabled) return;
  debugPrint('$_bold${_blue}[AutoPilot ℹ️ ]$_reset $msg');
}