w static method

bool w(
  1. Object? warn, {
  2. bool showPath = true,
  3. bool onlyDebug = true,
  4. int lines = 0,
  5. int position = 0,
  6. Zone? zone,
  7. bool split = true,
  8. bool showTag = true,
  9. LogBgColor? bgColor,
})

Implementation

static bool w(
  Object? warn, {
  bool showPath = true,
  bool onlyDebug = true,
  int lines = 0,
  int position = 0,
  Zone? zone,
  bool split = true,
  bool showTag = true,
  LogBgColor? bgColor,
}) {
  return _log(
    LogColor.warn,
    warn,
    showPath,
    onlyDebug,
    zone,
    lines: lines,
    position: ++position,
    split: split,
    showTag: showTag,
    bgColor: bgColor,
  );
}